:root {
    --mifo-dark: #041c2c;
    --mifo-light: #6bb8ff;
    --mifo-font: 'Roboto Slab', serif;
    --border-radius: 5px;
}

body {
    font-family: var(--mifo-font);
    background-color: var(--mifo-dark);
    color: var(--mifo-light);
    margin: 0;
    padding: 0;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

button {
    background-color: var(--mifo-light);
    color: var(--mifo-dark);
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.hidden {
    display: none !important;
}

.header {
    margin: 5em 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.header img {
    width: 100%;
    height: auto;
}

.info {
    text-align: center;
    margin-bottom: 3em;
}

#start-screen {
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    justify-content: space-between;
    width: 100%;
}

#registration {
    margin: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

#highscore {
    margin: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

#competition {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

#countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#startStopButton {
    margin: 50px;
    width: 200px;
    height: 100px;
    font-size: 48px;
}

#admin-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: var(--mifo-light);
    text-decoration: none;
}

#admin-link a {
    color: var(--mifo-light);
    text-decoration: none;
}