body{
    font-family: 'Franklin Gothic Condensed', 'Arial Narrow', Arial, sans-serif;
    background-color: black;
    color: white;
    align-items: center;
    justify-content: center;
}

header{
    flex-direction: column;
    align-items: center;
}

.whiteline{
    display: flex;
    margin: 1em;
    margin-left: 3em;
    margin-right: 3em;
    border-bottom: 1px dashed white;
}

main{
    display: flex;
    flex-direction: column;
    font-size: 1.2em;
    margin-bottom: 10%;
}

footer{
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 7%;
}

h1, h2, h3, h4 {
    text-transform: uppercase;
    /* font-style: oblique; */
}

/* Drop Down Menu */

#menu {
    position: fixed;
    display: flex; 
    flex-direction: column;
    background-color: black;
    overflow: hidden;
    height: 100%;
    transition: bottom 0.8s;
    bottom: -100%;
    width: 100%;
    z-index: 2;
}

#menu a{
    text-transform: uppercase;
    font-style: oblique;
    height: max-content;
    text-decoration: none;
    color: white;
    padding: 0.5em;
    font-size: 1.8em;
    background-color: black;
    border-bottom: solid white 2px;
}

#menu a:hover {
    background-color: white;
    color: blue;
    transition: background-color 0.3s, color 0.3s;
}

/* Controls Bottom */

.controls_bottom{
    display: flex;
    flex-direction: row;
    position: fixed;
    width: 100%;
    height: 7%;
    bottom: 0;
    background-color: black;
    justify-content: space-around;
    border-top: 1px white solid;
    z-index: 2;
}

.controls_bottom button{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    height: 100%;
    aspect-ratio: 1;
    background-color: black;
    color: white;
    border: none;
    border-radius: 50em;
}

.controls_bottom button:hover{
    color: blue;
    background-color: white;
    transition: background-color 0.5s, color 0.5s;
}

.controls_bottom button:active{
    color: black;
    background-color: white;
    transition: background-color 0.1s;
}

/* Radial Menu */
/* 
#radial_container{
    position: fixed;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 10em;
    height: 10em;
    z-index: 2;
}

#radial_container a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 10%;
    font-size: 2em;
    aspect-ratio: 1;
    display: none;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    text-shadow: 2px 2px 2px black, -2px -2px2 black;
}

#radial_container a:hover{
    background-color: red;
}

#radial_button_wrapper {
    position: fixed;
    display: flex;
    background-color: #EEE;
    border: 5px dashed #111;
}

#radial_button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 15%;
    aspect-ratio: 1;
    color: white;
    font-size: xx-large;
    background-color: black;
    border: 1px solid white;
    border-radius: 50%;
}

#radial_button:hover {
    color: blue;
    cursor: pointer;
}
#shortcut_n {
    margin-bottom: 180px;
}
#shortcut_nw {
    margin-bottom: 121px;
    margin-right: 125px;
}
#shortcut_w {
    margin-right: 180px;
}
#shortcut_sw {
    margin-top: 123px;
    margin-right: 123px;
}
#shortcut_s {
    margin-top: 180px;
}
#shortcut_se {
    margin-top: 123px;
    margin-left: 123px;
}
#shortcut_e {
    margin-left: 180px;
}
#shortcut_ne {
    margin-bottom: 121px;
    margin-left: 125px;
} */
