

body {
    background-color: black;
    margin:0px;
}

.Nav-Main {
    position: fixed;
    width:100%;
    height:auto;
    background-color: white;
    display:flex;
}

.Nav-Main a {
    font-size:xx-large;
    font-weight: bold;
    color:black;
    text-decoration: none;
    padding: 5px;
}

button {
    display:flex;
    justify-content: center;
    width:200px;
    height: 50px;
    margin:0 auto;
}

.selected {
    background-color: darkgray;
}


/* Home-Body Start */
.Home-Body {
    display:inline-block;
    padding-top: 10vh;
    background-color:white;
    width:100%;
}

.Home-Body iframe {
    width: 75%;
    height: 90vh;
    margin-left: 12.5%;
    margin-bottom: 1vh;
    min-height: fit-content;
    max-height: 800px;
    display:none;
}

.Home-Body button {
    background-color: whitesmoke;
    font-weight: 400;
    height: fit-content;
    border-radius: 10px;
}

.Home-Body h1, .Home-Body p {
    width:fit-content;
    margin:auto;
    color:#111;
}

.Home-Body p {
    font-size: large;
    font-weight: 500;
    max-width: 75%;
    text-align: center;
}
.Home-Body hr {
    width: 60%;
    margin:auto;
    height: 3px;
    margin-top: 4px;
    margin-bottom: 4px;
    border-radius: 10px;
    border-width: 1px;
    background-color:gray;
    
}
/* Home-Body End */


