* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 20px;
    background: #f9dce5;
    font-family: Arial, sans-serif;
}

main {
    width: min(100%, 1100px);
    margin: auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px #0002;
}

p {
    margin: 12px 0;
    text-align: center;
    font-size: 15px;
}