/*** OVERWRITE ARBOR STYLE ****/

header {
    position: relative;
    font-family: "Poppins", sans-serif;
    color: white;
    background: #0d0d0d;
    background: linear-gradient(180deg, rgba(13, 13, 13, 1) 32%, rgba(126, 0, 0, 1) 100%);
    padding: 10px;
    margin: 0;
}

header h1 span {
    font-weight: 600;
    color: var(--pastel-red);
}

nav,
nav a {
    color: #ffcece;
    background-color: #7e0000;
}

/*** COUNTDOWN ****/

#countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#countdown-container span {
    font-size: 24px;
}

#countdown {
    width: 250px;
    text-wrap: nowrap;
    font-family: "Digital";
    font-size: 70px;
    color: white;
    text-align: center;
    background-color: rgb(34, 34, 34);
    padding: 0 10px;
    border: 3px groove grey;
    border-radius: 10px;
    user-select: none;
}

/*** BUTTONS ****/

#come-later {
    text-align: center;
    color: var(--pastel-red);
    font-size: 20px;
    font-weight: 500;
}

#buttons {
    display: none; /* flex */
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

#buttons button {
    font-size: 25px;
    height: fit-content;
}

/*** VIDEO ****/
#video {
    width: 100%;
    aspect-ratio: 16 / 9;
}

/*** RULES ****/
#rules {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#rules li::marker {
    font-weight: 500;
}

.grey-text {
    color: grey;
}

#examples {
    width: 100%;
    border: 1px solid grey;
    border-collapse: collapse;
}
#examples td {
    border: 1px solid grey;
    padding: 10px;
}

/*** PRIZES ****/
#prizes {
    width: 100%;
    border: 1px solid grey;
    border-collapse: collapse;
}

#prizes th,
#prizes td {
    border: 1px solid grey;
    padding: 10px;
    text-align: center;
}
