/* File: styles.css */

/* Imposta margini e padding di base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Sfondo che copre l'intero schermo */
body {
    /* background: url('https://via.placeholder.com/1920x1080') no-repeat center center fixed; */
    background: url('pexels-vie-studio-4439444.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Arial', sans-serif;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
  color: darkgreen;
  text-decoration: none;
}

/* Overlay per centrare il contenuto */
.overlay {
    text-align: center;
    background: rgba(0, 0, 0, 0.5); /* Sfondo trasparente */
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
}

/* Titolo principale */
.title {
    font-size: 3rem;
    margin-bottom: 10px;
    font-family: 'Lora', serif;
}

/* Scritta "Presto Online" */
.subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-variant: small-caps;
    font-style: italic;
}

/* Contenitore dei box */
.contact-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Singolo box */
.box {
    background: rgba(255, 255, 255, 0.2); /* Sfondo semitrasparente */
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
}

/* Stile del testo nei box */
.box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.box p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsività */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .box {
        width: 100%;
    }
}
