body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;
        background-color: #c9bdaf;
    }

    .container {
        width: 50%;
        height: 88%;
        display: flex;
    }

    .sidebar {
        width: 35%;
        background: white;
        display: flex;
        flex-direction: column;
    }

    .nav {
        padding-top: 3%;
    }

    .nav img {
        padding-left: 3%;
    }

    .nav-item {
        width: 50%;
    }

    .lyrics {
        width: 70%;
    }

    .latest-container {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .latest {
        width: 65%;
        padding-left: 3%;
    }

    .logo {
        width: 35%;
        padding-left: 3%;
    }

    .main {
        width: 65%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: url("files/pc.jpg");
        background-size: 136%;
        background-position: center 19%;
    }

    .overlay {
        width: 100%;
        height: 100%;
        background-image: url(files/cosa.png);
        background-size: contain;
    }

    .scroll{
        overflow-y: scroll;
    }

    .centered{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .release {
        width: 96%;
        padding: 2%;
        background-color: white;
    }

    .releaseInfo {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .releaseCover {
        width: 25%;
        height: auto;
        box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.4);
    }

    .releaseLinks {
        margin-top: 10px;
    }

    .releaseLinks a {
        margin-right: 10px;
    }

    #releases {
        border: 1px solid black;
    }

    a {
        color: #fd7e34;
    }

    .section{
        display: none;
        width: 90%;
        height: 90%;
    }

    .aboutInfo{
        background-color: white;
        border-radius: 12px;
        height: 93%;
        width: 93%; 
        padding: 2%;
    }

    .latestIframe{
        width: 95%;
        aspect-ratio: 16 / 9;
        align-self: center;
    }

    .videoContainer{
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        padding:0.5%;
        border-radius: 16px;
    }



    @media (max-width: 1280px) {
        .container {
            width: 70%;
        }
}