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;
}

.passwordContainer, .userNameContainer{
    width: 200px;
    padding: 0 0 10px 0;
}
.passwordContainer input, .userNameContainer input{
    margin-top: 5px;
    width: 200px;
}

#loginInput{
    width: 200px;
    height: 25px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 5px;
}

#loginInput:hover{
    background-color: lightgray;
}

#loginInput:active{
    background-color: #2D2D2D;
    color: white;
}

#loginForm{
    background-color: #2D2D2D;
    color: white;
    width: fit-content;
    padding: 30px 30px;
    border-radius: 10px;
}


