* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #faf6f1;
}

.content {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 4vh;
}

.buttons {
    padding-top: 15px;
}

.header_landing {
    margin-bottom: -15.3rem;
}

.landing_container {
    background-image: url('../img/simo_landing.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 245px;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.header {
    text-align: center;
    padding-top: 93px;
}

.profile-img > img {
    border-radius: 9999px;
    cursor: pointer;
    max-width: 200px;
    border: 11px solid #faf6f1;
}

.profile-logo > img {
    max-width: 200px;
}

.info {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 650px;
    margin: 0 auto;
}

.info > ul {
    list-style: none;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.info > ul > li {
    font-size: 19px;
    text-align: center;
    border: 2px solid #535252;
    border-radius: 21px;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    width: 100%;
    margin-bottom: 10px;
    /* font */
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.info > ul > li > a {
    text-decoration: none;
    color: #000;
    padding: 16px 20px;
    display: block;
}

.social-media {
    display: flex;
    justify-content: center;
    margin-top: 6px;
}

.social-media > ul {
    list-style: none;
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.social-media a {
    width: 50px;
    height: 50px;
}

.social-media > ul > li {
    background-image: url('../img/rss_logos.png');
    background-repeat: no-repeat;
    background-size: 190px;
    width: 31px;
    height: 31px;
}

.social-media > ul > li > a {
    display: block;
    width: 100%;
    height: 100%;
}

.rss-youtube {
    background-position: -17px -97px;
}

.rss-instagram {
    background-position: -96px -97px;
}

.rss-facebook {
    background-position: -17px -17px;
}

.rss-spotify {
    background-position: -136px -57px;
}

.simo-tag {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 15px;

    display: flex;
    justify-content: center;    
}

#about-details {
    font-size: 16px;
    text-align: justify;
    margin-top: -30px;

    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

#about-details.show {
    max-height: 200px; /* Ajusta según el contenido */
    opacity: 1;
    margin-top: -25px;
}

#about-me > p {
    justify-content: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 16px 20px;
}

.about-me-txt {
    margin: 0 auto;
}

.arrow {
    margin-right: 1.5rem;
    margin-top: -1.5rem;
    margin-left: -1.5rem;
}

.arrow-svg {
    position: absolute;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
}