html {
    background: #2C0100;
    font-family: "stratum-2-web", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #E6CDB4;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 3.78px;
}

a:hover {
    /*color: #F5D78A;*/
    text-decoration: underline;
}

body {
    height: 100%;
    min-height: 100dvh;
}

header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

header ul {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

/*header ul li:nth-child(2) {
    display: none;
}
*/

header ul li ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 1px;
}

.address-mobile {
    padding-top: 10px;
    text-align: center;
}

   .address-desktop {
        display: none;
    }

main {
    width: 100%;
    height: 100%;
}

main img {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}



.logo-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 20px;
    max-width: 1400px;
}

footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 10;
}

footer ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 10px;

}

footer ul li {
    text-align: center;
}



@media only screen and (min-width: 1024px) {
    html {
        font-size: 20px;
    }

    .address-mobile {
        display: none;
    }
   .address-desktop {
        display: flex;
    }


 /*   header nav > ul > li:nth-child(2) {
        display: flex;
    }
*/
    footer ul {
        flex-direction: row;
        gap: 20px;
    }

    footer ul li:first-child {
        text-align: left;
    }

    footer ul li:last-child {
        text-align: right;
    }

}

@media only screen and (min-width: 1600px) {
    html {
        /*font-size: 40px;*/
    }
}