
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    background-color: hsl(0,0%,98%);
    color: #fff;
    background: rgb(255,8,181);
background: linear-gradient(152deg, rgba(255,8,181,1) 4%, rgba(255,5,81,1) 100%);
}

.container{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  max-width: 1000px;
  padding: 2rem;
  margin: 3rem 0;
  gap: 10px;
  background: rgb(255,8,181);
background: linear-gradient(152deg, rgba(255,8,181,1) 4%, rgba(255,5,81,1) 100%);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 12px;
  
}
.wrapper .logo{
  width: 250px;
}
.wrapper .logo img{
  width: 100%;
  border-radius: 50%;
  border: 5px solid #fa83e6 ;
}


.wrapper ul li{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 1rem 2rem;
    background-color: hsl(236,71%,97%);
    margin-top: 20px;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 500;
    box-shadow: rgb(0 0 0 / 9%) 0 3px 5px;

}
.wrapper ul li i{
  font-size: 1.5rem;
}
.wrapper ul li:nth-of-type(2) i{
  color: hsl(120, 88%, 36%);
}
.wrapper ul li:nth-of-type(2) a{
  color: hsl(120, 88%, 36%);
}
.wrapper ul li:nth-of-type(3){
  color: hsl(337, 100%, 50%);
}
.wrapper ul li:nth-of-type(3) i{
  color: hsl(337, 100%, 50%);
}
.wrapper ul li:nth-of-type(3) a{
  color: hsl(337, 100%, 50%);
}

.wrapper ul li:nth-of-type(4) i{
  color: hsl(261, 100%, 50%);
}
.wrapper ul li:nth-of-type(4) a{
  color: hsl(261, 100%, 50%);
}
.wrapper ul li a{
  text-decoration: none;

}

.wrapper ul li a:hover{
  text-decoration: underline;
}

.wrapper > p:nth-of-type(1) {
  color: #fff;
  font-weight: 400;
}
.wrapper > p:nth-of-type(2) {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
.wrapper p:nth-of-type(3){
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.wrapper ul:nth-of-type(2) li{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(0, 0%, 95%);
}
.wrapper ul:nth-of-type(2) li > i,a{
  margin-left: 8px;
}
.wrapper ul:nth-of-type(2) li > i{
  color: #444;
}
.wrapper ul:nth-of-type(2) li > a{
  color: #444;
}

footer {
 background-color: hsl(0, 0%, 20%);
 padding: 1rem;
}
footer p{
  font-size: .8rem;
  color: hsl(0, 0%, 80%);
}

@media (max-width : 768px){
  html{
    font-size: .7rem;
  }
}