#navigation {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    color: black;
    font-family: 'HFMonorita Bold', sans-serif;
}
.nav-current {
    color: black;
    text-decoration: none;
    font-size: 30px;
}
.nav-other {
    color: rgb(165, 155, 155);
    text-decoration: none;
}

#header {
    display: flex;
    justify-content: center;
    font-family: 'HFMonorita Bold', sans-serif;
    text-transform: uppercase;
}

.form {
    display: flex;
    flex-direction: column;
    align-content:center;
    flex-wrap: wrap;
}

.label {
    padding:20px;
    font-family: 'HFMonorita Bold', sans-serif;
}

.label input  {
    font-family: 'HFMonorita Bold', sans-serif;
    border: solid black 2px;
    width: 300px;
}

.label textarea {
    font-family: 'HFMonorita Bold', sans-serif;
    border: solid black 2px;
    width: 600px;
}
.button {
    display: flex;
    justify-content: center;
}
button {
    padding: 10px;
    background-color: white;
    color: black;
    font-family: 'HFMonorita Bold', sans-serif;
    border: solid 5px black;
    font-size: 20px;
    margin-top: 10px;
    text-decoration: none;
}

button:hover {
    background-color: black;
    color:white;
    cursor:pointer;
    border: solid 5px white;
}
@media all and (max-width:600px) {
    #navigation {
        padding: 10px;
    }
    .nav-current {
        font-size: 15px;
    }
    .nav-other {
        font-size: 8px;
    }
    #header {
        flex-wrap: wrap;
        text-align: center;
        font-size: 15px;
    }
    .form {
        text-align: left;
        margin-left: 90px;
    }
    .label {
        padding:15px;
    }
    .label textarea {
        width: 300px;
    }
    .button {
        margin-right: 100px;
    }
}
@media all and (max-width:550px) {
    .form {
        margin-left: 100px;
    }
}
@media all and (max-width:430px) {
    .form {
        margin-left: 50px;
    }
    .label {
        padding:10px;
    }
    .button {
        margin-right: 30px;
    }
}
@media all and (max-width:390px) {
    #header {
        font-size: 10px;
    }
    .form {
        margin-left: 25px;
    }
    .button {
        margin-right: 10px;
    }
}
@media all and (max-width:300px) {
    .form {
        margin-left: 20px;
    }
    .label textarea {
        width: 200px;
    }
    .label input  {
        width: 200px;
    }
    .button {
        margin-right: 30px;
    }
}