* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
    display: flex;
    flex-direction: column;
}

img {
    width: 75vw;
    margin-bottom: 0.05vh;
    pointer-events: none;
}

ul {
    list-style-type: none;
    margin-left: auto;
    margin-right: auto;
}

a {
    text-decoration: none;
    color: rgb(70, 70, 70);
    padding: 0.5vw;
}

a:hover {
    color: black;
    transition: .25s ease-in-out;
}

#control {
    position: fixed;
    bottom: 2.5vh;
    right: 2.5vw;
    display: flex;
    flex-direction: row;
    z-index: 99;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 98;
}
