body {
    padding: 0;
    margin: 0;
}

#background {
    margin: 0;
    padding: 0;
    max-width: 100%;
    max-height: 100%;
    background-color: rgb(100, 97, 97);
    width: 100vw;
    height: 100vh;
}

#header { 
    background-color: aqua;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.homepage-button {
    margin: 10px;
    font-size: 30px;
    -webkit-appearance: none;
    -moz-appearance: none; 
    appearance: none;
    background-color: transparent;
    border: 0;
}

.homepage-button:hover {
    text-decoration: underline;
    color: lightgray;
}

