body {
    background-color: black;
    margin: 0;
    padding: 40px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    font-family: sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-image {
    max-width: 500px;
    width: 100%;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
    width: min(1100px, 95%);
    min-width: 0; 
}

.images-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: contain;
}

a {
    color: white;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    font-size: 1.5em;
}
