body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

header {
    background-color: #0079c2;
    color: white;
    padding: 10px;
    text-align: center;
}

header nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    display: inline-block;
}

.images-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.image-box {
    width: 200px;
    height: 200px;
    background-color: #ddd;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    background-color: #0079c2;
    color: white;
    padding: 10px;
    text-align: center;
}

footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

footer .footer-link {
    width: 150px;
    margin: 10px;
    text-align: center;
}

footer .footer-link a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px;
<!--    background-color: #444; -->
    border-radius: 5px;
}

footer .footer-link img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 10px auto;
}
