*{
    margin: 0;
    padding: 0;
}

body{
    background-color: rgb(253, 238, 220);
}

header{
    background-color: rgb(205, 247, 247);
    padding: 10px 400px 10px 400px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

header a{
    text-decoration: none;
}

nav{
    width: 600px;
    flex:1;
    display: flex;
    justify-content:space-evenly;
}

a{
    font-size: 25px;
    color: rgb(3, 58, 186);
}

a#active{
    color: white;
    text-shadow: 1px 1px 5px black;
}

a:hover{
    color: red;
    text-shadow: 1px 1px 5px black;
}

head img{
    flex:0;
}

form{
    width: 600px;
}

main {
    margin: 120px auto auto auto;
    width: 600px;
    display: flex;
    flex-direction: column;
    font-size: 25px;
    justify-content:center;
    align-items: center;
}

input, label{
    display: block;
}

fieldset{
    padding: 0 10px 10px 10px;
    background-color: rgb(3, 58, 186);
    color: white;
}

legend{
    color: rgb(242, 160, 20);
    font-size: 50px;
    text-shadow: 2px 2px #000000;
}

input{
    width: 100%;
    height: 25px;
}

label{
    margin-top: 10px;
}

textarea{
    height: 25px;
    width: 100%;
    resize: vertical;
}

.note{
    height: 100px;
    width: 100%;
    resize: vertical;
}


:placeholder-shown{
    font-size: 15px;
}

button{
    margin-top: 5px;
    padding: 10px 15px 10px 15px;
    border: solid 1px rgb(1, 97, 1);
    font-size: 25px;
    text-align: center;
    color: white;
    background-color: rgb(1, 161, 27);
    align-items: center;
}

footer{
    background-color: rgb(206, 243, 150);
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px;
}

