﻿@import url('fonts.css');

html, body {
    color: #1a1a1a;
    background-color: whitesmoke;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

main {
    align-content: center;
}

button {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 800;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 800;
}

h1 {
    font-size: 3em;
}

h2 {
    font-size: 2em;
}

a {
    color: #1a1a1a;
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

    a:visited {
        color: #1a1a1a;
    }

.flex-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3em;
    align-items: center;
    height: 100vh;
}

.panel-container {
    display: flex;
    flex-direction: column;
    background-color: whitesmoke;
    justify-content: space-between;
    border: 7.5px white solid;
    border-radius: 1em;
    max-width: 1150px;
    box-shadow: rgba(0, 0, 0, 0.4) 0 0 10px 0px;
}

img {
    max-width: 15em;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
}

.panel-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    padding: 1em;
}

.panel-body-text {
    font-size: 1.25em;
}

.merch {
    grid-area: merch;
}

.merch-hero-heading {
    align-self: center;
}

.waiting-room {
    grid-area: waiting-room;
}

.progress-bar {
    background-color: rgba(255,255,255,0.9);
    border-radius: .15em;
    border: 5px solid #4d4d4d;
    height: 2em;
}

/*.progress {
    position: relative;
    height: 2em;
    background-color: whitesmoke;
    background-image: url(../images/progress-tile.png);
    transition: all .5s ease-in-out;
}*/

/*.progress-runner {
    position: absolute;
    right: 0;
    height: 1.75em;
}*/

.position-info {
    align-self: center;
    font-size: 2em;
    font-weight: bold;
    padding: .5em 0;
}

.enter-text-block {
    font-size: 1.5em;
}

.enter-button {
    font-size: 2em;
    background-color: white;
    color: #1a1a1a;
    font-weight: bold;
    padding: .5em 1em;
    border: none;
    border-radius: .15em;
    cursor: pointer;
}

.prequeue-countdown-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1em;
    justify-content: space-evenly;
}

.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: whitesmoke;
    border-radius: .25em;
    color: whitesmoke;
    padding: .25em .5em;
}

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

@media (max-width: 1150px) {
    .flex-container > div {
        margin: 0 1em;
    }

    .grid-container {
        gap: 5px;
        background-color: whitesmoke;
        grid-template-columns: auto;
        grid-template-rows: auto;
        grid-template-areas:
            "waiting-room"
    }
}
