body{
    margin: 10px;
    background-color: rgb(45, 44, 44);
    font-family: Tahoma, Arial;
}

h1{
    background-color: green;
    width: 1000px;
    height: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: white;
    padding-right: 10px;
    margin-left: 50px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 0px;
}

nav{
    background-color: black;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 1000px;
    height: 50px;
    margin-left: 50px;
    margin-top: 0px;
    padding-left: 10px;
} 

nav a{
    padding: 5px;
    text-decoration: none;
    color: white;
}

nav a:hover{
    text-decoration: underline;
}

.content{
    background-color: white;
    margin-left: 50px;
    width: 960px;
    height: 500px;
    margin-top: 0px;
    padding-left: 50px;
    padding-top: 10px;
}

td{
    border: 1px solid black;
}

.footer{
    display: flex;
    justify-content: center;
    background-color: grey;
    width: 1010px;
    margin-left: 50px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-top: 5px solid black;
}

.footer a{
    color: black;
    text-decoration: none;
}

label{
    min-width: 140px;
    display: inline-block;
}
