body {
    display: flex;
    flex-direction: column;
    justify-content: center;

    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    position: relative;

    background-image: url('img/background-new.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.center {
    position: relative;

    width: 95%;
    max-width: 800px;

    padding: 50px 0;
    margin: 0 auto;
}

.button {
    position: relative;
    display: inline-block;

    max-width: 200px;
    width: 100%;

    font-family: "neue-haas-unica",sans-serif;
    color: #FFF;
    font-weight: 700;
    font-size: 1.7em;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;

    margin: 30px auto 0;
    padding: 15px 10px 20px;

    border: solid #FFF 3px;

    background-color: rgba(0, 0, 0, 0.35);
    transition: background-color .4s ease, color .4s ease, border-color .4s ease;
}

.button:hover {
    background-color: rgba(81, 119, 109, 0.75);
}

@media only screen and (min-width: 600px) {
    .center {
        width: 70%;
    }

    .button {
        max-width: 250px;

        font-size: 1.7em;
    }
}


@media only screen and (min-height: 800px) {
    .opening-hours {
        margin-top: 50px;
    }

    .button {
        margin: 30px auto 0;
    }
}

.opening-hours {
    font-family: "neue-haas-unica",sans-serif;
    color: #FFF;
    font-weight: 700;
    font-size: 1.7em;
    text-align: center;
    -webkit-font-smoothing: antialiased;

    margin-top: 20px;
}

.opening-hours .sup {
    position: relative;
    bottom: 6px;
    font-size: 70%;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.disclaimer {
    font-family: "neue-haas-unica",sans-serif;
    color: #FFF;
    font-weight: 700;
    font-size: 1.7em;
    text-align: center;
    -webkit-font-smoothing: antialiased;

    margin-top: 20px;

    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 1));
}

.disclaimer a {
    color: #FFF;
    appearance: none;
    cursor: pointer;
    outline: inherit;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}

.no-wrap {
    white-space: nowrap;
}

.sm-container {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 40px;
}

.sm-circle {
    position: relative;
    width: 50px;
    height: 50px;

    background-color: #FFFFFF;
    border-radius: 50%;

    margin: 10px;

    transition: transform .4s ease;
}

.sm-circle:hover {
    transform: scale(1.07);
}

.sm-icon {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 24px;

    transform: translateX(-50%) translateY(-50%);
}