*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    color: #187C62;
    font-family: sans-serif;
}

body{
    background-color: #187C62;
    padding: 20px;
}

.main {
    position: relative;
    background-color: #66F389;
    height: 3000px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 38px 0;
    max-width: 380px; 
    margin: 0 auto; 
  }

.volver{
    position: absolute;
    top: 20px;
    left: 20px;
    transition: transform 0.3s ease;
}

.volver:hover{
    transform: scale(1.2); /* Escala el elemento al 120% */
}

.volver img{

    height: 45px;
}

.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.2); /* Escala el elemento al 120% */
}

.contactimg img{
    height: 24px;
    margin-top: 3px;
}

hr{
    width: 100%;
    height: 1px;
    margin-top: 5px;
    border: 1px dashed #187C62;
}
 
.textodelista{

    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;

    font-size: 25px;
}

.textodelistapreview{
    margin-top: 10px;
    margin-bottom: 0px;
}

.textodelistacontact{
    margin-top: 25px;

}

.nsfwbox{
    height: 140px;
    width: 80%;
    
    
}

.nsfwboxvideo{
    height: 2270px;
}

.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;
}

.listitemvideo{
    margin-top: 25px;
    margin-left: 1px;
    display: inline-block;
    width: 100%;
    height: 300px;
    list-style: none;
    overflow: hidden;
}

.listitemvideoprimero{
    margin-top: 15px;
    margin-left: 1px;
    display: inline-block;
    width: 100%;
    height: 300px;
    list-style: none;
    overflow: hidden;
}

.listitemvideoprimero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listitemvideo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.volverdos{
    top: 2880px;
    left: 170px;
}

@media (max-width: 380px) {
    .volverdos {
        left: 130px;
    }
}