@font-face {
    font-family: 'Nimbus Sans';
    font-style: normal;
    font-weight: normal;
    src: local('Nimbus Sans L Regular'), url('NimbusSanL-Reg.woff') format('woff');
}

@font-face {
    font-family: 'Nimbus Sans';
    font-style: normal;
    font-weight: bold;
    src: local('Nimbus Sans L Bold'), url('NimbusSanL-Bol.woff') format('woff');
}
html {
    box-sizing: border-box;
    min-height: 100%;
    font-size: 62.5%;
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    overflow-x: hidden;
}
body {
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    color: #041e3c;
    font-family: "Open Sans",sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    text-rendering: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-x: hidden;
}
header {
    padding-top: 4rem;
}


header figure img {
    width: 200px;
}

article {
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}
article > * {
    flex: 0 0 100%;
}


article .bottles img {
    width: 140rem;
}
p.intro {
    font-size: 2.8rem;
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    flex: 0 1 81rem
}
p.outro {
    font-size: 1.6rem;
    margin-left: auto;
    margin-right: auto;
    flex: 0 1 54rem;
    max-width: 100vw;
    padding: 0 2rem;
}
p {
    box-sizing: border-box;
}
a {
    color: inherit;
}
a.button {
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
    font-size: 1.4rem;
    padding: 1rem 2.5rem;
    margin-bottom: 1rem;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
}
a.button:hover {
    background-color: #fff;
    color: #000;
}
footer {
    font-size: 1.6rem;
    padding-bottom: 3rem;
}


@media (max-width: 1100px) {
    article .bottles {
        overflow-x: scroll;
        display: block;
        width: 100vw;
    }
    article .bottles img {
        width: 100rem;
    }
}
@media (max-width: 600px) {
    article .bottles img {
        width: 80rem;
    }
    p.intro {
        font-size: 2.2rem;
    }
    p.outro {
        padding: 0 2rem;
    }
    header figure img {
        width: 120px;
    }    
}