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

body {
  font-family: "Manrope", sans-serif;
  overflow: hidden;
}

#logo {
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  color: white;
  font-family: "Quicksand", sans-serif;
}

main {
  height: 100vh;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  opacity: 0;
  transition: all 1s ease 0s;
}

#container {
  height: 90.2%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5rem 2rem;
}

#text-container {
  height: auto;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  transform: translateX(-120%);
  opacity: 0;
  transition: all 0.9s ease 1.2s;
}

#img-container {
  height: auto;
  width: auto;
}

img {
  transform: translateY(40%);
  transition: all 0.8s ease 1s;
  opacity: 0;
}

.title {
  font-size: 3rem;
  color: white;
}

/* .title span {
  color: #8082de;
} */

.btn {
  padding: 0.5rem 1rem;
  color: white;
  background-color: #8082de;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
}

.btn:hover {
  color: #8082de;
  background-color: white;
}

.subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  width: 80%;
  color: white;
}

#button a {
  text-decoration: none;
  font-size: 1.5rem;
  border-radius: 0.4rem;
}

#button {
  margin-top: 2rem;
}

#img-container img {
  height: 400px;
  width: auto;
}

main {
  position: relative;
}
.test {
  position: absolute;
  z-index: -1;
  top: -450px;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  margin-left: -600px;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  background: #8082de;
  background: linear-gradient(45deg, #8082de 0%, #8082de 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6d52aa', endColorstr='#796fc1',GradientType=1 );
}
