@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Syne:wght@400..800&display=swap");

body {
  margin: 0;
  background-color: black;
  overflow-x: hidden;
}

* {
  color: white;
  font-family: "Montserrat", sans-serif;
}

#container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
#container img {
  max-width: 95%;
  width: 35rem;
}

#navi {
  display: flex;
  gap: 16px;
}

#navi a,
i {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.5);
  transition: 250ms;
  gap: 8px;
  text-align: center;
}

#navi a {
  background: rgba(251, 255, 0, 0.5);
  border-bottom: 2px solid #fff200;
  border-radius: 70px;
  padding: 16px;
}

#navi a:hover i {
  color: white;
}

#navi a:hover {
  color: white;
  background: rgba(255, 251, 0, 0.75);
}

@media (max-width: 600px) {
  #navi {
    flex-direction: column;
  }
}
.bg {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  opacity: 0.25;
  z-index: -1;
}

footer {
  text-align: center;
  padding: 16px;
}

.section {
  background: #0e0e0e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section .text {
  max-width: 95%;
  width: 60rem;
  padding-top: 128px;
  padding-bottom: 32px;
}

.section h2 {
  font-family: "Syne";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  color: #ffffff;
  margin: 0;
}

.section p {
  font-family: "Syne";
  font-style: normal;
  font-weight: 100;
  font-size: 20px;
  color: #ffffff;
}

header {
  position: fixed;
  width: 100%;
  height: 60px;
  left: 0px;
  top: 0px;
  background: rgba(14, 14, 14, 0.8);
  border-bottom: 2px solid #ffd000;
  box-shadow: 0px 7px 30.1px rgba(255, 234, 0, 0.35);
  backdrop-filter: blur(15px);
  border-radius: 0px 0px 15vw 15vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

#nav {
  display: flex;
  gap: 32px;
}

#nav a {
  text-decoration: none;
  font-family: "Syne";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  transition: 250ms;
  color: #ffffff;
}

#nav a:hover {
  transform: scale(1.1, 1.1);
}

.button {
  text-decoration: none;
  background: rgba(255, 225, 0, 0.55);
  border: none;
  border-bottom: 2px solid #ffee00;
  border-radius: 40px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  color: #ffffff;
  padding: 16px 32px;
  transition: 250ms;
}

.button:hover {
  background: rgba(255, 238, 0, 0.75);
}

:focus {
  outline: none;
}

.toggle-switch {
  display: none;
}

.toggle-label {
  width: 50px;
  height: 28px;
  background: rgba(139, 125, 0, 0.26);
  border-radius: 14px;
  cursor: pointer;
  position: relative;
}

.toggle-label:before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: #ffe600;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: left 0.2s ease;
}

.toggle-switch:checked + .toggle-label:before {
  left: 22px;
}

.toggle-switch:checked + .toggle-label {
  background: rgba(192, 192, 3, 0.281);
}
