body {
    font-family: sans-serif;
    background-color: aqua;
}

h1 {
    font-size: 45px;
    color: blue;
    margin: 50px 0 40px 0;
    text-align: center;
    background-color: blueviolet;
}

.navigation_links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap : 30px;
    text-align: center;
}

.bordered_img {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap : 20px;
    text-align: center;
}

img {
    width: 280px;
    height: 180px;
    border: 5px solid rgb(14, 138, 166);
    border-radius: 8px;
}

footer {
    color: blanchedalmond;
    font-weight: bold;
    text-align: center;
    margin-top: 40px;
}



