*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    color: #187C62;
    font-family: sans-serif;
}

body{
    background-color: #187C62;
    padding: 20px;
}



.main {
    background-color: #66F389;
    height: 880px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 38px 0;
    max-width: 380px; 
    margin: 0 auto; 
  }
.no{
   display: none; 
}
.img img{
    height: 95px;
    width: 95px;
    border-radius: 50%;
    margin-bottom: 10px;
}

 .name{
    font-size: 45px;
}
.subtitle{
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;

    font-size: 12px;
    margin-top: 15px;
}

.contactlist{
    list-style: none;
    display: flex;
    

}


.contactimg {
    transition: transform 0.3s ease;
    display: flex;
    margin: 25px 15px;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background-color: #F3FFC1;
    justify-content: center;
    align-items: center;
}

.contactimg:hover{
    transform: scale(1.19); /* Escala el elemento al 120% */
}

.contactimg img{
    height: 24px;
    margin-top: 1px;
}

hr{
    width: 100%;
    height: 1px;
    margin-top: 5px;
    border: 1px dashed #187C62;
}
 
.textodelista{
    margin: 15px 0px 25px 0px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    
    font-size: 12px;
}

.uno{
    margin-top: 35px ;

}

.nsfwbox{
    height: 140px;

    width: 80%;
    
}

.listitem{
    transition: transform 0.4s ease;
    font-weight: 600;
    display: inline-flex;
    color: #187C62;
    background-color: #F3FFC1;
    width: 100%;
    height: 42px;
    margin: 10px 0px;
    list-style: none;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
    border-radius: 20px
}

.listitem:hover{
    transform: scale(1.08); /* Escala el elemento al 120% */
}

.listitem a{
    text-decoration: none;
}

.listitem img{
    height: 24px;
}

