/* Impostazioni generali del corpo della pagina */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f4f7f6;
    color: #333;
}

/* Contenitore principale per centrare il contenuto */
.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Stile dell'header */
header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 20px;
}

.logo {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

h1 {
    margin: 0;
    font-size: 2.5em;
    color: #2c3e50;
}

.subtitle {
    margin: 5px 0 0;
    font-size: 1.2em;
    color: #7f8c8d;
}

/* Stile delle sezioni principali */
main section {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.8em;
    color: #34495e;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.4em;
    color: #e67e22;
    text-align: center;
}

/* Sezione "Sito in costruzione" */
.status {
    background-color: #fffbe6;
    border: 1px solid #ffe58f;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
}

/* Sezione dei link esterni */
.links {
    text-align: center;
}

.link-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1em;
    color: #fff;
    background-color: #3498db;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #2980b9;
}

/* Stile del footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9em;
    color: #95a5a6;
}
