@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=DM+Serif+Text:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  font-weight: 300;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
#home {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

body {
  width: 100%;
  overflow-x: hidden;
  background: linear-gradient(135deg, #000000, #1f1f1f, #3e3c3c);
  color: white;
}
#about {
  display: flex;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.content {
  position: relative;
  z-index: 1;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  top: 40%;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 9%;
  background-color: transparent;
  filter: drop-shadow(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  font-family: "Abril Fatface", serif;
  box-shadow: none;
}
header.scrolled {
  height: 70px;
  background-color: black;
}
.logo {
  width: 7rem;
  height: 7rem;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
  animation-duration: 0ms;
}
.auth-links > * {
  margin: 0;
  padding: 0;
}
.log {
  font-size: 1.8rem;
  color: white;
  font-weight: 500;
  padding: 0.5rem;
}
.login {
  font-size: 1.8rem;
  color: white;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  border: 2px solid plum;
  transition: 0.3s ease;
}
.login:hover {
  background-color: plum;
  color: black;
  box-shadow: 0 0 15px rgb(245, 239, 239);
}
.auth-links {
  justify-items: center;
  align-items: center;
  gap: 0rem;
  align-content: space-around;
}
nav a {
  font-size: 1.8rem;
  color: white;
  margin-left: 4rem;
  font-weight: 500;
  transition: 0.3s ease;
  border-bottom: 3px solid transparent;
}

nav a:hover,
nav a.active {
  color: plum;
  border-bottom: 3px solid plum;
}

.hero {
  width: 100%;
  height: 100vh;
  padding-right: 15px 15px;
  font-size: 30px;
  row-gap: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "fjalla one", sans-serif;
  transform: translateX(100px);
  animation: slide 1.5s ease forwards;
}
.butt {
  font-size: 1.8rem;
  color: white;
  font-weight: 600;
  padding: 0.5rem 2rem;
  border-radius: 2rem;
  border: 2px solid plum;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.butt:hover {
  background: plum;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 0 15px plum;
}
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}
.close-menu {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
  position: absolute;
  top: 1rem;
  right: 2rem;
}
.close-menu i {
  color: white;
  font-size: 2rem;
  cursor: pointer;
}
.childinfo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  object-fit: cover;
}
.h11 {
  color: white;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.h11:hover {
  transform: scale(1.1);
  animation-duration: 0ms;
}
@media (max-width: 995px) {
  .hero {
    font-size: 20px;
  }
  nav {
    position: absolute;
    top: 0;
    width: 80%;
    justify-content: center;
    height: auto;
    background-color: #161616;
    border-bottom: 3px solid plum;
    display: none;
    flex-direction: column;
    align-items: center;
  }

  nav.active {
    display: flex;
  }

  nav a {
    display: block;
    font-size: 1.8rem;
    margin: 1.5rem 0;
  }
  .auth-links {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .menu-toggle {
    display: block;
  }
  .close-menu {
    display: block;
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
