@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .collection img {
        max-width: 455px;

    }

}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .menu {
        gap: 40px;
    }

    .collection .box {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .collection .title {
        margin-bottom: 30px;
    }

    .collection p {
        margin: 30px 0;
    }

}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .header .menu {
        gap: 30px;
    }

    .header .content {
        height: 500px;

    }

    .collection .box {
        margin-bottom: 50px;
    }

    .collection .title {
        margin-top: 40px;
    }

    .collection a {
        width: 95px;
        height: 50px;

    }

    .footer .nav {
        padding: 30px 0px;
        height: auto;
    }

    .header h1 {
        font-size: 75px;
    }

    .more {
        max-width: max-content;
    }


}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
    }

    .nav .burger {
        display: flex;
        position: relative;
        z-index: 20;
        
    }

    .nav .menu {
        position: fixed;
        top: 0;
        left: -110%;
        background: #2d2d2d;
        width: 100vw;
        height: 100dvh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
    }

    .burger:focus ~ .menu{
        left: 0;
    }

    .header h1 {
        font-size: 35px;
    }

    .more {
        font-size: 15px;
    }

    .title {
        font-size: 30px;
    }

    .collection h3 {
        font-size: 25px;
    }

    .footer .nav {
        padding: 3px 0px;
    }

}