*{
    margin: 0;
    padding: 0;
}
header{
    background-color: rgb(235, 235, 235);
    display: flex;
    align-items: center;
    text-decoration: rgb(0, 0, 0);
    text-decoration-color: black;
    font-size: 25px;
}
header img{
    width: 100px;
    flex: 0;
}
header nav{
    flex: 1;
    display: flex;
    justify-content: space-evenly;
    color: black;
}

header nav a{
    text-transform: uppercase;
    text-decoration: rgb(49, 49, 49);
    transition: .5s;
}

header nav a:hover{
    color: rgb(0, 0, 0);
    text-decoration-line: underline;
}
footer{
    background-color: burlywood;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;

}

a:visited, a:focus {
    text-decoration: none;
    color: #000;
}
input{
    border-radius: 5px;
    padding: 5px;
    border: 0px;
}
body{
    background-image: url(https://images6.alphacoders.com/127/1274824.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
}
main{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
form{
    width: 350px;
    color: white;
    background-color:rgba(128, 128, 128, 50%);
    padding: 30px;
    margin: 30px;
}
fieldset{
    padding: 10px 20px 20px 20px;
    color: white;
}
label, input{
    display: block;
}
input{
    width: 100%;
}
label{
    margin-top: 10px;
    color: white;
}
button{
    width: 100%;
    border: 3px;
}
footer{
    background-color: burlywood;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;

}