* {
    box-sizing: border-box;
}

body{
    background-color: black;
    color: white;
}

nav{
    text-align: center;
    background-color: black;
    color: white;
    margin: 0;
    height: 75px;
}

hr{
    background-color: darkgrey;
    height: 2px;
    margin: auto;
    padding-bottom: 2px;
}

.Title{
    
    display: inline-block;
    text-align: center;
}

.MenuLinks{ 
    display: inline-block;
    color: white;
    font-style: normal;
    text-decoration: none;
    padding: 26px;
    font-size: larger;
}

.MenuLinks:hover{
    background-color: #45a29e;
    color: white;
}

h2{
    text-align: center;
}

.formDiv{
    display: block;
    text-align: center;
}

form{
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

