body {
  background: url('../media/texture.png') repeat;
  color: white;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  margin: 5px;
  border: 20px;
  overflow-x: hidden;
}

/* HEADER */

header {
  background-color: url('../media/texture.png') repeat; /* rgb(4, 97, 35);*/
  padding: 15px 50px;
}
nav ul {
    margin: 10;
    padding: 10;
    list-style-type: none;
    text-align: center;
}

nav li {
    display: inline-block;
    margin-right: 20px;
}

button {
  position: relative;
  background-color: #4CAF50;
  outline-color: transparent;
  border-radius: 10px;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition: background-color 0.4s;
  box-shadow: 0px 0px 2px 2px rgb(0, 0, 0);
}

button:hover {
  background-color: #FFA500;
  box-shadow: 5px 5px 10px #0f0f0f, -5px -5px 10px #0f0f0f;
  transform: translateY(-5px);
}

button::before {
  content: "";
  background: url("../media/overlay.png") center center no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  pointer-events: none; /* Allow button clicks */
}


header a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}

header .mobile {
  display: none;
}

header .logo a {
  background-image: url("../media/texture.png");
  background-size: 300px;
  background-repeat: no-repeat;
  display: inline-block;
  height: 100px;
  width: 300px;
}

nav ul {
  margin: 20;
  padding: 0;
  list-style-type: none;
  text-align: center;
}

nav li {
  display: inline-block;
  margin-right: 20px;
 }
 .center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

video {
  width: 800px; /* Set the desired width */
  height: 800px; /* Set the desired height */
  display: block; /* Remove default inline display */
  margin: 20px auto; /* Center the video horizontally with top and bottom margin */
  border-radius: 20px; /* Add rounded corners */
  overflow: hidden; /* Hide overflow for rounded corners */
}

/* Media query for mobile devices */
@media only screen and (max-width: 600px) {
  video {
    width: 100%; /* Make the video fill the width of the viewport */
    height: auto; /* Maintain the aspect ratio */
  }

  header .desktop {
    display: none;
  }
}