* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    color: #111;
    min-width: 320px;
    width: 100vw;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    overscroll-behavior: contain;
    -ms-overflow-style: none;
    scroll-padding-top: 96px;
}

body {
    font-family: "Belarius", sans-serif;
    background-image: url(../assets/welcome/background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100%;
    margin: auto;
}

a { color: #eee; }

p {
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1em;
}

h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h2 {
    color: #7a3636;
    font-size: 1.25em;
    font-weight: 700;
    text-transform: uppercase;
}

input {
    font-family: "Belarius", sans-serif;
}

img {
    max-width: 100%;
    width: auto;
}

main {
    display: flex;
    min-height: 100vh;
}

section {
    border: 4px solid #7a3636;
    margin: 0.5em;
    padding: 0.5em;
    position: relative;
    display: flex;
    flex-grow: 1;
}

.content {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 0.5em;
    text-align: center;
}

.left-decoration,
.right-decoration {
    display: none;
    position: relative;
    width: 25%;
}

.emblem {
    position: absolute;
    top: 0;
    left: 0;
}

.models {
    position: absolute;
    bottom: 0;
    left: 0;
}

.jackets {
    position: absolute;
    bottom: 0;
    right: 0;
}

.button {
    color: #eee;
    background-color: #111;
    display: inline-block;
    font-size: 1.25em;
    font-weight: 300;
    margin-bottom: 1em;
    padding: 0.75em 2em;
    text-decoration: none;
    text-transform: uppercase;
}

.button:active {
    transform: scale(0.9);
}

.logo {
    max-width: 25%;
}

.bottles {
    max-width: 75%;
}

@media (min-width: 1024px) {
    section {
        margin: 1em;
        padding: 1em;
    }

    h1 { font-size: 3em; }

    h2 { font-size: 1.5em; }

    p { font-size: 1em; }

    .content {
        min-width: 50%;
        padding: 0;
        width: 50%;
    }

    .left-decoration,
    .right-decoration {
        display: flex;
    }

    .left-decoration { width: 25%; }

    .right-decoration { width: 25%; }
}