* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  max-width: 100%;
  font-size: 10px;
  font-family: "Space Grotesk", sans-serif;
}

nav {
  background-color: rgba(45, 45, 42, 1);
  width: 100vw;
  max-width: 100%;
  height: 50px;
  position: fixed;
  z-index: 1;
}

nav ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  height: 100%;
}

nav ul li {
  text-align: center;
}

nav ul li a {
  color: white;
  font-size: clamp(1.2rem, 2vw, 2rem);
  text-decoration: none;
  transition: all 0.2s ease-out;
}

nav ul li a:hover {
  color: #00a7e1;
}

.solid-medium {
  margin-bottom: 20px;
  border: 2px solid #00a7e1;
}

.solid-small {
  margin: 20px 0 20px 0;
  border: 0px;
  height: 2px;
  background-color: black;
}

#intro {
  padding: 0 3% 0 3%;
  width: 100vw;
  height: 100vh;
}

#intro > div {
  padding-top: 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}

#intro > div > div {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

h3 {
  font-size: clamp(1.2rem, 1.5vw, 24rem);
}

h2,
h1 {
  color: #00a7e1;
  font-size: clamp(2.4rem, 3.5vw, 48rem);
}

#intro p {
  font-size: clamp(1.2rem, 1vw, 20rem);
}

#intro a {
  font-size: clamp(1.2rem, 1vw, 24rem);
  color: black;
  text-decoration: none;
  background-color: white;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1.5px solid #00a7e1;
  transition: all 0.2s ease-out;
}

#intro a:hover {
  background-color: #00a7e1;
  color: white;
}

#intro img {
  width: 40vw;
}

#form {
  height: auto;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
}

#form:target {
  visibility: visible;
  opacity: 1;
}

#form > section {
  margin: 10% auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  width: 40%;
  position: relative;
}

#form .closeBtn {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: clamp(3rem, 1vw, 4rem);
  font-weight: bold;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease-out;
}

#form .closeBtn:hover {
  color: #00a7e1;
}

#form h2 {
  font-size: clamp(1.2rem, 1.5vw, 24rem);
  color: #00a7e1;
  margin-bottom: 50px;
  text-align: center;
}

#form form {
  margin: 0 30px 0 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
}

#form form input {
  border-radius: 20px;
  border: 1px solid black;
  font-size: clamp(1.2rem, 1.5vw, 24rem);
  margin-bottom: 4px;
  width: 100%;
  padding: 5px 5px 5px 15px;
}

#form form label {
  font-size: clamp(1.2rem, 1.5vw, 24rem);
  margin-bottom: 4px;
  width: 100%;
  padding: 5px 5px 5px 15px;
}

#form form button {
  margin: 10px 0 10px 0;
  padding: 8px 16px;
  border: 1px solid #00a7e1;
  border-radius: 25px;
  background-color: transparent;
  color: black;
  font-size: clamp(1.2rem, 1vw, 24rem);
  transition: all 0.2s ease-out;
}

#form form button:hover {
  background-color: #00a7e1;
  color: white;
}

#benefit {
  padding: 0 3% 0 3%;
  height: auto;
}
