/* styles.css */

body {
    background-color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

header img {
    max-width: 100%;
    height: auto;
}

main {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
}

.images-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
}

.image-wrapper {
    position: relative;
    width: calc(40% - 10px);
}

.image-wrapper img {
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.2em;
    text-align: center;
    width: calc(100% - 20px);
}

.links-container {
    padding: 20px 0;
}

.links-container a {
    color: blue;
    text-decoration: none;
}

.links-container a:hover {
    text-decoration: underline;
}

footer {
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
}

@media (max-width: 768px) {
    .image-wrapper {
        width: calc(80% - 10px);
    }
}

@media (max-width: 480px) {
    .image-wrapper {
        width: calc(100% - 10px);
    }
}
