*{
    box-sizing: border-box;
    margin: 0;
}
 
body{
    background-color: #79b0d1;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}
 
h1{
    color:white;
}
 
.container{
    display: flex;
    flex-direction: column;
    width: 100dvw;
    height: 100dvh;
    justify-content: space-between;
}
 
.header{
    display: flex;
    background-color: #5D5F71;
    height: 100px;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
}
 
.nav{
    display: flex;
    width: 500px;
    height: 50px;
    background-color: #DABECA;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 30px;
}
 
a{
    text-decoration: none;
    color: #5D5F71;
}
 
.footer{
    display: flex;
    background-color: #5D5F71;
    height: 100px;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    color: #E3D8F1;
}
 
.main{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
   
}
 
.article{
    display:flex;
    height: 300px;
    width: 400px;
    background-color: #5D5F71;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 20px;
    padding: 20px;
    border-radius: 30px;
}
h2{
    background-color:white;
    color: #5D5F71;
    padding: 10px;
    border-radius: 30px;
}
 