*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

nav{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: rgba(0, 0, 0, 0);
}

body{
    color: white;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.387);
    background-blend-mode: color;
    background-image: url(imgs/JDMz\ background\ Z.png);
}

.links{
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

#Homelink{
    margin-right: auto;
}

nav a{
    position: relative;
    text-decoration: none;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0px 20px;
}
a{
    transition: 0.25s ease-in-out;
}

#disc:hover{
    background-color: rgb(45, 45, 193);
}

#download:hover{
    background-color: rgb(0, 165, 0);
}

#BROKER:hover{
    background-color: red;
}

#feedback:hover{
    background-color: rgb(88, 120, 0);
}

#music:hover{
    background-color: blueviolet;
}

#Homelink:hover{
    background-color: rgb(0, 84, 195);
}


.open-sidebar-active, .close-sidebar-active{
    display: none;
    padding: 0 20px;
}

#sidebar-active{
    display: none;
}

.box1{
    padding: 50px;
    text-wrap: wrap;
    gap: 12px;
    flex-grow: 1;
    padding-bottom: 100px;
    text-align: center;
    display: flex;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.354);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.406);
    background-color: rgba(9, 1, 25, 0.266);
    padding: 50px;
    flex-direction: column;
    justify-content: center;
    height: auto;
}

.tittle{
    margin-top: 50px;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0);
    display: flex;
    height: 30vh;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.container{
    margin-top: 100px;
    border: 1px solid rgba(255, 255, 255, 0);
    padding: 12px;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    display: flex;
    height: auto;
}

.free{
    height: 50px;
    width: 200px;
    position: relative;
    border: none;
    padding-left: 40px;
    cursor: pointer;
    color: white;
    transition: 0.20s ease-in-out;
    background-color: rgb(234, 172, 0);
    font-size: 20px;
    border-radius: 50px;
}

.free:hover{
    box-shadow: 0px 0px 15px rgb(220, 183, 20);
}

.free:active{
    box-shadow: 0px 0px 10px black;
    background-color: rgb(142, 121, 0);
}

#frees{
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 35px;
}

#links-icons{
    cursor: pointer;
    margin-top: 7px;
    margin-right: 10px;
}

#purple-button:hover{
    box-shadow: 0px 0px 20px rgb(192, 0, 0);
}

#purple-button:active{
    background-color: rgb(135, 0, 0);
}

#green-button:hover{
    box-shadow: 0px 0px 20px rgb(0, 96, 192);
}

.green-button:active{
    background-color: rgb(0, 38, 128);
}



@media (max-width: 937px) {
    .links{
        z-index: 11;
        flex-direction: column;
        top: 0;
        transition: 0.65s ease-in-out;
        align-items: flex-start;
        justify-content: flex-start;
        right: -100%;
        width: 300px;
        backdrop-filter: blur(20px);
        background-color: rgba(0, 0, 0, 0.64);
        position: fixed;
    }

    nav a{
        padding: 20px 30px;
        width: 100%;
        height: auto;
    }

    .open-sidebar-active, .close-sidebar-active{
        display: flex;
        padding: 20px 30px;
    }

    #sidebar-active:checked ~ .links{
        right: 0;
    }
}


