body{
        font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-image: url(/img/bg.jpg);
    margin: 0;
    padding: 0;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #e3e2dee8;
    background-blend-mode: screen;
}

/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

h1{
    margin: auto;
    font-size: 50px;
    max-width: 640px;
    color: #000000;
    line-height: 1.1;
}

h2{
    color: #ac8331;
    font-size: 32px;
}

.container p{
    font-size: 14px;
    max-width: 500px;
    text-wrap: balance;
    color: #3b210d;
    line-height: 1.4;
}

.container{
       text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main{
    display: flex;
    flex: 1;
    justify-content: center;
    align-content: center;
    align-self: normal;
    align-items: center;
    flex-direction: column;
    gap: 60px;
}

footer{
  padding: 20px 50px;
}

.footer{
     display: flex;
    justify-content: space-between;
    font-size: 13px;
    flex-wrap: wrap;
    row-gap: 20px;
}

.footer__col{

}

.footer__col a,
.copyright{
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    transition: all .3s;
}

.footer__col a:hover{
     color: #ac8331;
}

.footer__col p{
    font-size: 11px;
}

.footer__col-info{
   display: flex;
    gap: 40px;
}

.footer__col:nth-of-type(1){
    flex: 1 1 50%;
}

.footer__col:nth-of-type(2){
    flex: 1 1 50%;
    justify-content: end;
}

.footer__col:nth-of-type(3){
    flex: 1 1 100%;
    text-align: center;
}

@media (max-width: 767px) {
 
    .footer__col:nth-of-type(1){
        flex: 1 1 100%;
                text-align: center;
    }

    .footer__col:nth-of-type(2){
        flex: 1 1 100%;
        justify-content: center;
    }

    h1 {
        margin: auto;
        font-size: 24px;
        max-width: 640px;
        color: #000000;
        line-height: 1.2;
        text-wrap: balance;
    }

    h2 {
        color: #ac8331;
        font-size: 18px;
    }

    .container p {
        font-size: 12px;
        line-height: 1.4;
        padding: 0 30px;
    }

    .footer__col a, .copyright {
        font-size: 14px;
    }

    .footer__col p {
        font-size: 9px;
    }

    footer {
    padding: 0px 20px 30px 20px;
}
}