/* Stile per la pagina index */
body {
    background: url('background.jpg') repeat;
    background-attachment: fixed;
    font-family: 'Lora', serif;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    background: #d4b38c;
    padding: 20px;
    font-size: 2.0em;
    font-weight: bold;
    color: #5a3e1b;
    border-bottom: 5px solid #8c6239;
    font-family: 'Playfair Display', serif;
}

main {
    padding: 40px;
    margin: 20px auto;
    width: 70%;
    border-radius: 15px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}


.galleria {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.dipinto {
    background: #f8e1c4;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    max-width: 250px;
    position: relative;
    border: 10px solid #8c6239;
    margin-bottom: 20px;
    margin: auto;
    transition: transform 0.3s ease;
}

.dipinto:hover {
    transform: scale(1.05);
}

.dipinto a {
    text-decoration: none;
}

.dipinto img {
    max-width: 90%;
    height: auto;
    display: block;
    border: 5px solid #d4b38c;
}

.dipinto p {
    margin-top: 10px;
    font-size: 1.2em;
    color: #5a3e1b;
}

/* Stile per la pagina di risposta */
.dipinto-dettagli {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.dipinto-titolo {
    font-size: 3em;
    font-weight: bold;
    color: #5a3e1b;
    margin-bottom: 80px;
    margin-top: 5px;
    font-family: 'Playfair Display', serif;
}

.dipinto-contenitore {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

.dipinto-immagine img {
    max-width: 450px;
    height: auto;
    border: 5px solid #d4b38c;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.dipinto-info {
    flex: 1;
    max-width: 600px;
    font-size: 1.3em;
    color: #5a3e1b;
    line-height: 1.6;
}

.dipinto-info p {
    margin-bottom: 15px;
}

/* Pulsante per il ritorno alla galleria */
.torna-galleria {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    background-color: #8c6239;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.4em;
    font-family: 'Raleway', sans-serif;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.torna-galleria:hover {
    background-color: #d4b38c;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}