
@media only screen and (max-width:990px){
    .header{
        flex-direction: row;
        padding-left: 5%;
        padding-right: 5%;
        width: 100%;
        left: 0;
        min-height: 30px;
        height: 40px;
        overflow-y: visible;
        justify-content: space-between;
        position: fixed;
        top:0;
        background-color: var(--theme-color03);
    }
    .header .nav-links{
        background-color: var(--theme-color03);
        width: 100%;
        height: max-content;
        max-height: 100vh;
        flex-direction: column;
        position: absolute;
        top: 0;
        gap: 40px;
        right: 0;
        transform: translateY(-100%);
        transition: 0.3s ease;
        padding: 10%;
    }
    .header .burger{
        display: block;
    }
    .header .nav-links-active{
        transform: translateY(0%);
    }
    .header .logo, .footer #footer-part1 .footerlogo{
        font-size: 30px;
    }
    .header .nav-links li{
        position: relative;
        height: max-content;
    }
    .header .nav-links li a{
        font-size: 15px;
        height: max-content;
    }


    #home{
        height:100vh;
        min-height: 500px;
        padding: 0;

        flex-direction: column;
    }
    #home .home-section{
        width: 100%;
        padding: 40px;
        height: max-content;
        align-items: center;
        color: rgb(255, 255, 255);
    }
    #home .home-section h1{
        font-size: 40px;
        text-align: center;
    }
    #home .home-section h4{
        text-align: center;
        font-size: 18px;
    }

    .link{
        font-size: 20px;
    }
    #home .images{
        position: absolute;
        top: 0;
        left: 0;
        height: 100vh;
        min-height: 300px;
        width: 100%;
        background-color: black;
    }
    .container{
        flex-direction: column;
        align-items: start;
    }
    .container .image,.container .content{
        width: 100%;
    }
    .container-right .image{
        order: 0;
    }
    #quote .container .content h1{

        text-align: center;
    }
    #quote .container .content h2{
        font-size: 40px;
    }
    #about .container .image,.container .content{
        width: 100%;
        margin-bottom: 70px;
    }
    #recent-work .work-container{
        width: 100%;
        display: grid;
        grid-template-columns: 45% 45%;
        gap: 20px;
    }
    #recent-work .work-container .card{
        width: 100%;
    }
    #socials .container{
        flex-direction: row;
    }
    #music-hero{
        height: max-content;
        display: block;
        padding: 0;
        min-height: 10vh;
    }
    #music-hero .gradient{
        background: rgb(0, 0, 0);
        opacity: 0.4;
    }

    #cards .card{
        flex-direction: column;
        gap: 30px;
    }
    #cards .card .image{
        width: 100%;
        aspect-ratio: 2/1;
    }
    #cards .card .part1{
        width: 100%;
        padding: 0;
    }

    #cards .card .part1 .song-heading1{
        font-size: 27px;
    }
    #cards .card .part1 .song-heading2{
        font-size: 18px;
    }


    #music-hero .background-image{
        position: relative;
        width: 100%;
        bottom: 0;
        margin-top: 0;
        height: auto;
        z-index: -1;
    }
    #music-hero h1{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #recent-work .work-container .card:after{
        font-size: 40px;
    }
    #socials .container .link{
        font-size: 50px;
    }
}
@media only screen and (max-width:869px){
    .footer{
        flex-direction: column;
        height: max-content;
        gap: 50px;
    }
    .footer #footer-part3 ul li:nth-child(3){
        width: 50%;
    }
    #recent-work .work-container{
        width: 100%;
        display: grid;
        grid-template-columns: 100%;
        gap: 20px;
    }
    p{
          font-size: 14px;
    }

}
@media only screen and (max-width:454px){
    #socials .container .link{
        font-size: 30px;
    }
}