* {
    margin: 0;
}
body {
    background-color: #9ADEA2;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    background-color: #467292;
}
.header-logo{
    font-family: 'Caveat', cursive;
    font-size: 5em;
    color: #9ADEA2;
    margin-left: 20px;
}
.header-tel{
    font-family: 'Caveat', cursive;
    font-size: 2em;
    color: #9ADEA2;
}

.header-icon {
    display: flex;
    margin-right: 20px;
}
.header-icon-item{
    margin-left: 10px;
}

.papers {
    display: flex;
    justify-content: center;
    flex-wrap:wrap;
    background-color: #9ADEA2;
    color: #2c3a59;
}

.papers-item {
    background-color: #D6F2C1;
    border-bottom: 10px solid #80C0CE;
    width: 360px;
    padding: 20px;
    margin: 20px;
}
.papers-item p {
   margin-top: 10px;
    text-align: justify;
}
.papers-item-data{
    font-family: 'Caveat', cursive;
    font-size: 1.5em;
}
.papers-item-name{
    font-family: 'Caveat', cursive;
    font-size: 2em;
}
.papers-item-foto img {
    border: 5px solid #80C0CE;
}
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #467292;
    height:100px ;
    font-family: 'Caveat', cursive;
    color: #9ADEA2;
    font-size: 1.5em;
}