
body {
    background-color: #A2BFC7;
    margin: 0;
}
.header{
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #2CC4CB;
    height: 200px;
    font-size: 4em;
    color: #A2BFC7;
    text-shadow: 5px 5px 5px #2B4E64;
}
.gallery-card {
     display: flex;
     justify-content: center;
    flex-wrap: wrap;
}

 .card {
     flex-direction: column;
     display: flex;
     justify-content: space-around;
     border: 2px solid #2B4E64;
     padding: 20px;
     margin: 10px;
     border-radius: 20px;
     width: 250px;
     background-color: #6F9AAB;
     text-align: justify;

 }

 .card img {
     border: 2px solid #2B4E64;
     border-radius: 20px;
     margin: 10px;
 }

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #3667A6;
    height: 50px;
    border-top: 1px solid #ccc;
    box-sizing: border-box;
}

