* {
    margin: 0px;
    padding: 0px;
}

h1, h2, p, a {
    font-family: 'Roboto', sans-serif;
}

header {
    width: 100%;
    height: 15vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

nav {
    width: 50%;
    margin-left: 0px;

    position: relative;
}

#menuButton {
    margin-left: 5%;
    padding-left: 2%;
    padding-right: 2%;
    border: 2px solid rgb(20, 33, 61);
    border-radius: 10px;
    font-size: 20px;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

#menuButton:hover {
    color: rgb(200, 200, 200);
    border: 2px solid rgb(255, 215, 0);
}

#titleArea {
    width: 50%;
}

#title {
    font-size: 40px;
}

.navbarContentHide {
    display: none;
}

.navbarContentShow {
    position: absolute;
    width: 35%;
    padding-left: 5%;

    height: 40vh;
    z-index: 100;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

    background-color: rgba(0, 0, 0, 0.7);
    list-style-type: none;
}

.navLink {
    padding-left: 5%;
    padding-right: 5%;
    font-size: 20px;
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.navLink:hover {
    color: rgb(200, 200, 200);
    border: 1px solid rgb(255, 215, 0);
    border-radius: 10px;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-family: 'Roboto', sans-serif;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15vh;
    background-color: rgb(0, 0, 0);
}

.footerContent {
    list-style-type: none;
}

.footerLink {
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.footerLink:hover {
    color: rgb(200, 200, 200);
    text-decoration: underline;
}

@media (max-width: 768px) {

}