body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    text-align: center;
    margin: 0;
    padding: 40px;
}

h1 {
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px soldi red;
    transition: transform 0.2s ease-in-out;
}

.scene img {
    width: 100%;
    height: 100%
}

.scene p {
    text-align: center;
    color: white;
    margin-top: 8px;
}

.grid-item {
              background-color: aquamarine; 
                padding: 10px;
                text-align: center;
                box-shadow: 10px 10px 15px;
}