*{
    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;
}
h1{
    text-align: center;
    padding-top: 20px;
}
h4{
    text-align: center;
    text-decoration: rgb(49, 49, 49);
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    background-color: rgb(235, 235, 235);
}
h2{
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    background-color: rgb(235, 235, 235);
}
.search{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    width: 3%;
    background-color: rgb(235, 235, 235);
}
main{
    background-color: rgb(235, 235, 235);
}
.document{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    margin-top: 5px;
    width: 3%;
    background-color: rgb(235, 235, 235);
}
div{
    margin-bottom: 15px;
}