html {
    background-color: red;
    color: white;
}

body {
    background-color: #E3051B;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: "RobotoSlab Regular"
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

h3 {
    letter-spacing: 1px;
    font-size: 2.5rem;
    font-weight: 500;
}

a {
    color: #000;
    text-decoration: none;
    transition: all .2s;
}

p {
    margin: 0;
}

img {
    max-width: 100%;
}

main {
    display: flex;
    justify-content: center;
}

.container {
    display: flex;
    padding: 1em;
}

article {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    border-radius: .25em;
    padding: 2em;
    text-align:center;
}
article p {
    text-align:center;
}

section {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

button {
    color: #E3051B;
    background-color: #fff;
    border: none;
    border-radius: 0.1em;
    font-size: 20px;
    letter-spacing: 1px;
    width: 100%;
    text-transform: uppercase;
    padding: 10px 20px;
    font-family: 'RobotoSlab Regular'
}

    button:disabled {
        background-color: #E3051B;
        color: #fff;
        border:solid 2px #fff;
    }

.heading {
    font-family: "RotWeissSans Bold";
    line-height: 1.25;
    text-transform: uppercase;
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
    text-align:center;
}



.grow {
    flex-grow: 1;
}

.headline-logo {
    width: 8rem;
}

.header-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2em;
}

.position-container {
    width: 100%;
    margin: 0 auto !important;
    padding: 20px 0px !important;
    border-radius: 4px;
}

.enter {
    justify-self: center;
}

.position-info, .enter {
    align-self: center;
}

.position-info {
    display: flex;
    justify-content: center;
    font-size: 2.5em;
}

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

@media only screen and (min-width: 800px) {
    .container {
        padding: 5em;
    }

    h2 {
        font-size: 4.5rem;
    }

    .position-container {
        grid-template-columns: 1fr auto;
        width: 50%;
    }

    button {
        width: 50%
    }
    heading {
        width: 60%;
    }
}

.prequeue-countdown-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1em;
    justify-content: space-evenly;
    width: 50%;
    align-self: center;
}

.prequeue-countdown-value-container {
    display: flex;
    flex-direction: column;
    gap: .5em;
    flex-grow: 0;
    align-items: center;
}

.prequeue-countdown-value {
    font-size: 2em;
    font-weight: bold;
    background-color: white;
    border-radius: .25em;
    color: #E30613;
    padding: .25em .5em;
}

@media (max-width: 350px) {
    .prequeue-countdown-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
}