/* style.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f9f9fb;
    color: #EB2821;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    width: 100%;
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin-bottom: 35px;

}

h1 {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.1rem;
    color: #556270;
    font-weight: 400;
    line-height: 1.5;
}
/* Media query per schermi sotto i 650px (smartphone e tablet piccoli) */
@media (max-width: 650px) {
    h1 {
        font-size: 2.2rem;
        letter-spacing: 1.5px;
    }

    .logo {
        max-width: 220px;
        margin-bottom: 25px;
    }

    .subtitle {
        font-size: 1rem;
    }
}