body {
    background-color: #6699CC;
    margin: 0;
}

#title {
    display: flex;
    justify-content: center;
    font-family: "Georgia", "serif";
    font-size: min(8rem, 12vw);
    color: rgb(255, 183, 0);
    margin-bottom: 3rem;
    view-transition-name: title-transition;
    text-align: center;
}

.competitions {
    display: flex;
    justify-content: center;
    margin: 0 1rem;
}

.competitions-container {
    background-color: rgb(237, 173, 116);
    width: 75rem;
    /* height: 50rem; */
    border-radius: 2rem;
    border-color: rgb(151, 72, 32);
    border-width: 2rem;
    border: .4rem solid rgb(151, 72, 32);
}

.content {
    padding-top: 3rem;
    padding-bottom: 1rem;
    padding-left: clamp(.75rem, calc(-2rem + 8vw), 4rem);
    padding-right: clamp(.75rem, calc(-2rem + 8vw), 4rem);
}

.row {
    display: flex;
    justify-content: space-between;
    display: center;
    margin-bottom: 1rem;
    font-family: FreeMono, monospace;
    font-size: 2rem;
}

@media screen and (max-width: 850px) {
    .download {
        display: none;
    }
}