* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}


.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
 
  overflow: hidden;
  background-size: contain;
  filter: brightness(100%)
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%) blur(2px);

}


header {
  background-color: rgba(0, 0, 0, 0.6);
 
  padding: 15px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  font-size: 18px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  padding: 10px 15px;
  transition: all 0.3s;
  border-radius: 5px;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Search bar */
.search-bar {
  display: flex;
  align-items: center;
}

.search-bar input {
  padding: 8px 12px;
  font-size: 16px;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.search-bar button {
  padding: 8px 12px;
  font-size: 16px;
  background-color: #51762a;

  color: white;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.search-bar button:hover {
  background-color: #55802a;
}

.content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 1;
  margin-top: 8%;
  padding: 20px;
}

.content h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.content p {
  font-size: 8em;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}



pre {
  line-height: 30px;
}

.fff {
  margin: 100px 0 0 200px;
  width: 70%;
  height: 400px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.fff img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid white;
  transition: all ease-in-out 0.6s;
  margin-top: 100px;
}

.fff img:hover {
  width: 25%;
}

pre {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  height: 30px;
}

h1 {
  font-family: 'Times New Roman', Times, serif;
}

.boxes {
  color: #ffffff;
  display: grid;
  grid-template-columns: 1FR 1FR 1FR;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin-top: 100px;
  height: 20px;
  margin-left: 400px;


}


.box {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 10px solid rgb(161, 105, 2);
  height: 100px;
  width: 80%;
  border-radius: 10px;
  margin-top: 100px;
  font-weight: 100;
}

.links:hover {
  text-decoration: underline;
  font-weight: bold;
}

.links {
  color: rgb(161, 105, 2);
  font-size: 30px;

}
pre{
  font-size: 25px;
  color: rgb(237, 237, 235);
  text-shadow:1px 1px #b39814;
}
h1{
  color: rgb(255, 178, 36);
}