body{
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main{
    flex-grow: 1;
}
header,footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
header{
    background-color: rgba(224, 193, 183, 0.493);
}
header p{
    text-align: center;
    width: 85%;
}
article:first-child{
    width: 80%;
    padding: 10px;
    background-color: lightblue;
    border: 1px solid rgb(224, 193, 183);
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#second-part article{
    
    width: 85%;
    padding: 20px;
    background-color: rgb(224, 193, 183);
    border: 1px solid rgb(104, 95, 95);
    margin: 20px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2em auto;
}
article img{
    width: 60%;
}
section{
    display: flex;
}
article:first-child a{
    background-color: rgb(224, 193, 183);
    padding :10px;
    border: 1px solid rgb(34, 35, 36);
    border-radius: 5px;
}
#second-part article a{
    padding: 10px;
    background-color: lightblue;
    border: 1px solid rgb(104, 95, 95);
    border-radius: 5px;
}

#second-part article a:hover, article:first-child a:hover{
    background-color: white;
}

a{
    text-decoration: none;
    color: black;
}


footer{
    
    background-color: lightblue;
    width: 100%;
    height: 140px;
}