@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');

:root{
  font-size: 62.5%;
}

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

body{
  background: rgba(115, 76, 255, 0.131);
  padding: 60px 23px 66px;
  font-size: 1.6rem;
  font-family: "Epilogue", sans-serif;
  line-height: 3.2rem;
  margin-bottom: 1.7rem;
}

main{
  max-width: 33.0rem;
  margin: 0 auto;
}

h1{
  font-weight: 800;
  font-size: 4.0rem;
  line-height: 4.8rem;
  color: #090039;
  margin-bottom: 1.5rem;
}

main p:nth-child(1){
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #7158ef;
}

h1 + p{
  color: #09003994;
  line-height: 3.2rem;
  margin-bottom: 3.2rem;
}

a{
  color: #090039;
  text-decoration: none;
  transition: all 0.4s ease;
  font-weight: 600;
}

a:hover{
  color: #2408be;
}

ul{
  margin-top: 7.2rem;
  list-style: none;
}


ul li + li{
  margin-top: 3.2rem;
}

ul li{
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 3.2rem;
  color: #090039;
  width: 25.7rem;
  display: flex;
  gap: 4.0rem;
}

li span{
  font-weight: 800;
  font-size: 7.2rem;
  line-height: 8.0rem;
  color: #090039;
  letter-spacing: -2px;
}

@media (min-width:700px){
  body{
    padding-top: 8rem;
  }

  main{
    display: flex;
    gap: 10rem;
    max-width: 1020px;
  }

  main > div{
    max-width: 484px;
  }

  ul li{
    gap: 2.3rem;
    max-width: 450px;
    align-items: center;
  }

}