*{
    margin: 0px;
   /* padding: 0px; */
}

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;
}
a:visited, a:focus {
    text-decoration: none;
    color: #000;
}
li{
    text-decoration: none;
}
main{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px;
}
fieldset{
    display: block;
    align-items: left;
    justify-content: center;

}
footer{
    background-color: burlywood;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
}
section{
    margin-bottom: 30px;
}