body {
    padding: 0;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #6A1B0D;
    background-image: url('../img/bg-stalin.jpg?v=198');
    background-attachment: fixed;
    background-size: cover;
}

main,
header {
    width: 100%;
}

header {
    position: relative;
}

.sections {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 24px;
}

section {
    width: 100%;
    max-width: 980px;
    background: #A05736ee;
    background: #BA5C31ee;
    background: #BA5C3199;
    color: #CDBEAC;
    color: whitesmoke;
    font-family: Oswald-Light;
    padding: 40px;
    margin: 20px 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
    text-align: center;
    color: #6A1B0D;
    color: ghostwhite;
    font-family: 'Soviet2ee';
}

h1,
h2 {
    font-size: 64px;
    padding: 14px 0;
    margin-top: 0;
    margin-bottom: 18px;
    color: #6A1B0D;
    background: #BA5C31ee;
}

h1 a {
    color: #6A1B0D;
    text-decoration: none
}

h3 {
    font-size: 48px;
    margin-block-start: 0;
}

h4 {
    font-size: 26px;
    margin-block-start: 0;
}

.e404 {
    text-align: center;
    font-size: 24px;
}

.e404 a {
    padding: 0.5em 1.5em;
    text-decoration: none;
    background-color: #6A1B0D;
    color: ghostwhite;
    font-size: 24px;
    font-family: Oswald-SemiBold, sans-serif;
    margin: 20px auto 0;
}

@media only screen and (max-width: 1200px) {
    h1,
    h2 {
        font-size: 56px;
        padding: 12px 0;
        margin-bottom: 16px;
    }
    h3 {
        font-size: 42px;
    }
    h4 {
        font-size: 24px;
    }
    .sections {
        padding: 18px;
    }
    section {
        padding: 30px 20px;
        margin: 8px 0;
    }
}

@media only screen and (max-width: 992px) {
    h1,
    h2 {
        font-size: 48px;
    }
    h3 {
        font-size: 36px;
    }
    h4 {
        font-size: 20px;
    }
    .sections {
        padding: 18px;
    }
    section {
        margin: 8px 0;
    }
}

@media only screen and (max-width: 768px) {
    h1,
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 32px;
    }
    .sections {
        padding: 18px;
    }
    section {
        padding: 24px 16px;
        margin: 8px 0;
    }
    /* .shop-item {
        width: calc(100% / 2 - 20px);
    } */
}

@media only screen and (max-width: 576px) {
    h1,
    h2 {
        padding: 10px 0;
        margin-bottom: 10px;
    }
    h4 {
        font-size: 18px;
    }
    .sections {
        padding: 18px;
    }
    .contact-content,
    .contact-item a {
        font-size: 20px;
    }
}

.floating-shopping-cart-button {
    width: 80px;
    height: 80px;
    position: fixed;
    right: 20px;
    background: #BA5C3199;
    bottom: 50px;
    z-index: 1000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-shopping-cart-button:hover {
    background: #6A1B0D;
}

.floating-shopping-cart-button img {
    max-width: 50%;
}

[v-cloak] {
    display: none !important
}