body,
html,
h1,
h2,
h3 {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Alexandria', sans-serif;
    min-height: 100vh;
    position: relative;
    padding-bottom: 80px;
    box-sizing: border-box;
    background: #FAFFD1;
    background: -webkit-linear-gradient(to right, #FAFFD1, #e1e7ae);
    background: linear-gradient(to right, #FAFFD1, #e1e7ae);
}

header {
    text-align: center;
    padding: 30px 0;
}

header h1 {
    font-family: 'Pacifico', cursive;
    margin-bottom: 20px;
    font-size: 3em;
}

header h2 {
    font-weight: 100;
}

.sectie-titel {
    text-align: center;
    font-weight: 100;
    margin: 10px 0 30px;
    opacity: 0.7;
}

.games {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.game {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 330px;
    height: 190px;
    border-radius: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(255, 255, 255, 0.3) 0px 8px 16px -8px;
    background: #41295a;
    background: -webkit-linear-gradient(to right, #2F0743, #41295a);
    background: linear-gradient(to right, #2F0743, #41295a);
    color: white;
    padding: 35px;
    box-sizing: border-box;
    margin-bottom: 40px;
    margin-right: 10px;
}

.game-leerkracht {
    background: #134e5e;
    background: -webkit-linear-gradient(to right, #0b3a47, #134e5e);
    background: linear-gradient(to right, #0b3a47, #134e5e);
}

.game .title {
    font-size: 1.6em;
}

.game .info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 1.2em;
}

.game .info .controls .control {
    display: flex;
    justify-content: space-between;
    margin-top: 2px;
}

.game .info .controls .control label {
    margin-right: 20px;
}

.game .info .controls .control input,
.game .info .controls .control select {
    border: none;
    box-shadow: none;
    background: white;
    font-size: 1em;
    font-family: 'Alexandria', sans-serif;
    border-radius: 5px;
    text-align: center;
}

.game .info .go {
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    color: #2F0743;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
    font-size: 1.7em;
    transition: all 0.2s ease-out;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 54px 55px, rgba(255, 255, 255, 0.12) 0px -12px 30px, rgba(255, 255, 255, 0.12) 0px 4px 6px, rgba(255, 255, 255, 0.17) 0px 12px 13px, rgba(255, 255, 255, 0.09) 0px -3px 5px;
}

.game .info .go:hover {
    transform: scale(1.2);
    box-shadow: rgba(255, 255, 255, 0.12) 0px 54px 55px, rgba(255, 255, 255, 0.06) 0px -12px 30px, rgba(255, 255, 255, 0.06) 0px 4px 6px, rgba(255, 255, 255, 0.08) 0px 12px 13px, rgba(255, 255, 255, 0.04) 0px -3px 5px;
}

.game .info .go a {
    color: inherit;
    text-decoration: none;
}

footer {
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

#auth-balk {
    margin-bottom: 6px;
}

#auth-balk a,
#logout-knop {
    font-family: 'Alexandria', sans-serif;
    font-size: 0.9em;
    color: #41295a;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}
