html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: white;
  background-image: url("/img/index/background.png");
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
}

p {
  font-family: "Inter", sans-serif;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5vh 3vw;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 15vh;
  background-color: rgba(253, 253, 253, 0);
  z-index: 10;
}
.header li {
  margin-right: -20em;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.logo {
  max-height: 80px;
}

nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 45%;
  display: flex;
  gap: 10vw;
}
nav ul li a {
  text-decoration: none;
  color: #282937;
  font-size: 1.3em;
  font-family: "Inter", sans-serif;
  transition: color 0.3s;
}
nav ul li a:hover, nav ul li a.active {
  color: #632379;
  text-decoration: underline;
}
nav ul li .login {
  background-color: #632379;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  transition: background-color 0.3s, color 0.3s;
}
nav ul li .login:hover {
  background-color: #cdbae5;
}

/* Texts in the middle */
.content {
  position: absolute;
  top: 48%;
  left: 3%;
  transform: translateY(-65%);
}
.content h1 {
  font-size: 5vw;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 2vh 0;
  color: #32113f;
}
.content p {
  font-size: 1.2vw;
  max-width: 60vw;
  line-height: 1.5;
  color: rgb(51, 51, 51);
  margin-bottom: 2vh;
}
.content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 150px;
}
.content ul li a {
  text-decoration: none;
  color: #282937;
  font-size: 1.5em;
  font-family: "Inter", sans-serif;
  transition: color 0.3s;
}

.headline {
  font-size: 17px;
  font-weight: 500;
}

.subhead {
  font-size: 3vw;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.learn-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: #51A68D;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1em;
  font-family: "Inter", sans-serif;
  transition: background-color 0.3s, color 0.3s;
  margin: 8px 0 20px 0;
}
.learn-more:hover {
  color: #006849;
  background-color: #D8F3EA;
}

.shapes {
  display: flex;
  position: absolute;
  top: 84%;
  left: 5%;
  gap: 3vw;
  transform: translateY(-50%);
}
.shapes .shape {
  width: 17vw;
  height: 22vh;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s, box-shadow 0.5s;
  animation: hoverEffect 5s infinite;
}
.shapes .shape:nth-child(1) {
  animation-delay: 0s;
}
.shapes .shape:nth-child(2) {
  animation-delay: 1s;
}
.shapes .shape:nth-child(3) {
  animation-delay: 2s;
}

@keyframes hoverEffect {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
}

/*# sourceMappingURL=index.css.map */
