html, body{
    margin:0;
    padding:0;
    width: 100vw;
    height: 100vh;
    font-family: "DM Sans", sans-serif;
}

*{
    box-sizing: border-box;
}

.navigation{
    height: 50px;
    width: 100%;
}

.navigation nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
    width: 100%;
}

.navigation nav ul{
    margin: 0;
    position: relative;
    float: right;
    list-style: none;
}

.navigation li{
    display: inline-block;
    padding: 0 0 0 10px;
    width: auto;
    margin: auto;
}

.navigation a{
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: all .25s ease-in-out;
}

.navigation a:hover{
    color: darkslategrey;
}

.content{
    margin: 0 40px;
}
#main{
    padding-bottom: 20px;
    font-size: 20px;
}

#main select{
    width: 100px;
    height: 22px;
}

#main input{
    width: 50px;
    height: 22px;
}

.editfield{
    width: 70%;
    height: 400px;
}

.editfield textarea{
    width: 100%;
    height: 300px;
    resize: none;
}

.editfield button{
    margin-top: 10px;
    width: 50px;
    height: 22px;
}


