@font-face {
    font-family: 'Lora';
    src:url('/font/Lora.ttf.woff') format('woff'),
        url('/font/Lora.ttf.svg#Lora') format('svg'),
        url('/font/Lora.ttf.eot'),
        url('/font/Lora.ttf.eot?#iefix') format('embedded-opentype'); 
    font-weight: normal;
  font-style: normal;}
  
  
  body, html {
    margin: 0;
    padding: 0;
    font-family: 'Lora', sans-serif;
    color: #2E8B57;
background-color: #f5f5f5;
  text-align:center;
}

a, button, .cta {transition: .2s}

.hero {
    background-image: url('/la-citta-invisibile.jpeg'); /* Sostituisci con il percorso della tua immagine */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 40vh 20px 20px 20px;
    height: calc(60vh - 20px);
    display: flex;
    justify-content: center;
    align-items: center;
}

section {padding:10vh 20px;}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

.cta-button:hover {
    background-color: #45a049;
}

.about, .contact {
    padding: 60px 20px;
    text-align: center;
}

.about h2, .contact h2 {
    margin-bottom: 20px;
    color: #4CAF50;
}

.about p, .contact p {
    margin-bottom: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact ul {
    list-style-type: none;
    padding: 0;
}

.contact ul li {
    margin-bottom: 10px;
}

.social-media a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}

.social-media a:hover {
    text-decoration: underline;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .cta-button {
        font-size: 1em;
    }
}