html, body, #app {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    font-family: "Roboto", sans-serif;
}

/* Nav Section */
#top-nav {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    color: white;
    width: 100%;
}
#nav-button {
    display: inline-flex;
    margin: 10px;
}

/* Footer Section */
footer {
    padding: 20px;
    background-color: lightgray;
}
footer .icon {
    color: #8A7763;
}
footer h2 {
    margin: 0;
    padding: 0;
    font-size: 20px;
}
footer a {
    margin: 10px; 
    padding: 0; 
    text-decoration: none; 
    color: black;
    font-weight: normal;
    width: fit-content;
    display: block;
    cursor: pointer;
}
footer a:hover {
    font-weight: bold;
}

/* Small screens (Mobile) */
@media only screen and (max-width: 600px) {
    /* Nav Section */
    h1 {
        display: inline-flex;
        margin: 0px 0px 0px 10px;
        font-size: 26px;
        font-family: 'Times New Roman', Times, serif;
        cursor: pointer;
        font-weight: bolder;
    }
}

/* Medium screens (Tablets) */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    /* Nav Section */
    h1 {
        display: inline-flex;
        margin: 0px 10px 0px 10px;
        font-size: 35px;
        font-family: 'Times New Roman', Times, serif;
        cursor: pointer;
        font-weight: bolder;
    }
}

/* Large screens (Desktops) */
@media only screen and (min-width: 1025px) {
    /* Nav Section */
    h1 {
        display: inline-flex;
        margin: 0px 10px 0px 10px;
        font-size: 35px;
        font-family: 'Times New Roman', Times, serif;
        cursor: pointer;
        font-weight: bolder;
    }
}