@font-face {
    font-family: Alata;
    src: url(/resources/Alata-Regular.ttf)
}

:root {
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
    --safe-area-inset-top: env(safe-area-inset-top, 0px)
}

body,
html {
    background: #171614ff;
    color: #ebebd3;
    font: 18px Alata;
    margin: 0 2vw;
    overflow-x: hidden;
    overscroll-behavior: auto;
    padding: 0;
    scroll-behavior: smooth
}

h1 {
    text-align: center;
    margin: 10vh 0 5vh
}

p {
    text-align: center;
}

.container {
    color: #171614ff;
    border-radius: 16px;
    margin: 10vh 0;
    padding: 36px
}

.container,
button {
    background-color: #ebebd3
}

button {
    text-decoration: none;
    border: 3px solid #171614;
    border-radius: 8px;
    box-shadow: 3px 3px 0#171614;
    box-sizing: border-box;
    color: #171614;
    cursor: pointer;
    display: flex;
    font-family: inherit;
    font-size: 1rem;
    justify-content: center;
    margin: 20px 0;
    padding: 10px;
    text-align: center;
    transition: .4s;
    width: 100%
}

@media (max-width:1080px) {
    .container {
        padding: 24px
    }

    button {
        align-items: center;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        width: 100%
    }
}