#splash-screen {
    display: flex;
    flex-direction: column;

    justify-content: space-evenly;
    align-items: center;
}

#splash-screen > h1 {
    font-size: 3rem;
}

#splash-screen > ul > li {
    margin: 10px;
}

section {
    display: flex;
    flex-direction: column;

    justify-content: space-evenly;
}
article > * {
    margin: 10px;
}

article > ul > li {
    margin: 20px;
}

form {
    display: flex;
    flex-direction: column;

    justify-content: space-evenly;
    align-items: center;

    width: 100%;
    height: var(--content-height);
}

span {
    width: 100%;

    display: flex;
    flex-direction: row;

    justify-content: space-evenly;
    align-items: center;

    padding: 0;
    margin: 10px 0;
    
    border: none;
}

.choice {
    height: 100px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}

input[type="radio"] {
    width: 1.5rem;
    height: 1.5rem;
}

label {
    color: var(--text-color);
    font-size: 1.5rem;
}

form > button {
    height: 2.5rem;
    width: 8rem;
    font-size: 1.2rem;

    background-color: var(--accent);
    color: var(--secondary-color);
    border-color: var(--text-color);
}