body {
    background-color: #0A0A0A;
    margin: 0;
    padding: 1rem;
    line-height: 1.6;
}

#text_logo {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    margin-top: 10px;
    font-size: 1rem;
}

#heading {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    padding-top: 1.25rem;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.descriptions {
    color: white;
    font-family: "Manrope", sans-serif;
    font-size: 1.125rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.descriptions dt {
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.descriptions dd {
    margin-left: 0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

hr {
    width: 90%;
    margin: 2rem auto;
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

#copyright {
    color: rgba(255, 255, 255, 0.59);
    font-family: "Manrope", sans-serif;
    text-align: center;
    text-decoration: none;
    margin-top: 3rem;
    padding: 2rem 1rem;
    font-size: 0.875rem;
}

.copyright_effect:hover {
    color: white;
    text-decoration: none;
}

#composers_nav {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.59);
}

#composers_nav:hover {
    text-decoration: none;
    color: white;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        padding: 0.5rem;
    }
    
    #heading {
        font-size: 2rem;
        padding-top: 1rem;
    }
    
    .descriptions {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .descriptions dt {
        font-size: 1.125rem;
    }
    
    .descriptions dd {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    #heading {
        font-size: 1.75rem;
    }
    
    .descriptions {
        font-size: 0.9375rem;
    }
    
    .descriptions dt {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    
    #text_logo {
        font-size: 0.875rem;
    }
}