html, body {
    width: 100%;
    height: 100%;
    font-size: 10px;
    margin: 0;
    --title-font: 'Cabin Sketch', cursive;
    --main-text-font: 'Lato', sans-serif;
    --dark-button-color: rgb(255, 149, 11);
    --light-button-color: papayawhip;
    --box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
* {
    box-sizing: border-box;
}

.full-screen {
    width: 100%;
    height: 100%;
}

.max-height {
    height: 100%;
}

.header, .footer {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    font-size: 1.5em;
    font-family: var(--main-text-font);
    background-color: #F7E305;
}

.header-right {
    display: flex;
}

.header {
    height: 12%;
}
.footer {
    height: 7%;
}

.logo {
    margin-left: 0.5em;
}

.header-navigation-item {
    text-decoration: none;
    font-weight: bold;
    color: black;
    font-family: var(--main-text-font);
}

.header-navigation-item:hover, .logo:hover {
    color: var(--dark-button-color);
}

.header-navigation-item:visited, .logo:visited {
    color: black;
}

.play-dropdown-menu {
    position: relative;
    display: inline-block;
    margin: 1em 0.8em 1em 1em;
    cursor: pointer;
}

.play-dropdown-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    top: 1.8em;
    right: 0;
    width: 5.2em;
    background-color: var(--light-button-color);
    font-weight: bold;
    position: absolute;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 0.2em;
    z-index: 2;
}

.dropdown-list-item {
    padding: 0.5em;
}

.dropdown-list-item:hover {
    color: var(--dark-orange-button);
    background-color: rgb(252, 228, 189);
}

.dropdown-link {
    text-decoration: none;
    color: black;
}

.screen {
    height: 81%;
    width: 100%;
    margin: 0;
}

@media(min-width: 768px) {
    .header {
        font-size: 1.6em;
    }
}