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

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .menu {
        gap: 40px;
    }
    
    .collection .content {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;        
    }
    
    .collection p {
        max-width: 100%;
        
    }
    
    .collection a {
        margin: auto;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .burger {
        display: block;
    }
    
    .header .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: rgba(45, 45, 45, 0.8);
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0;
        left: -100%;
        transition: 0.5s;
    }
    
    .burger:focus ~ .menu {
        left: 0;
    }
    
    h1 {
        font-size: 65px;
    }
    
    .tolst {
        height: 80dvh;
    }
    
    h2 {
        margin-top: 50px;
    }
    
    .about p {
        margin-top: 0;
    }
    
    .collection .content {
        margin: 40px 0;
    }
    
    .footer .container {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-around;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
    }
    
    h1 {
        line-height: 120%;
        text-align: center;
        font-size: 50px;
    }
    
    .more {
        width: auto;
        height: auto;
        padding: 0 20px;
        margin-top: 50px;
    }
    
    .footer .menu {
        font-size: 16px;
    }
}
