/*palette*/
:root {
    --light: #F9F9F9;
    --dark: black;
}


/*font*/
/* h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Dirtyline 36Daysoftype 2022', sans-serif;
    /* font-family: 'Carnetdevoyage', sans-serif; 
} */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--light);

}

/* Container centrale */
.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 20px;
    /* Spazio tra gli elementi */
}

/* Logo */
.logo img {
    max-width: 300px;
    height: auto;
}

/* Sottotitolo */
p {
    font-size: 1rem;
    color: #333;
    font-family: "Manrope", sans-serif;
}

/* Links */
.links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
}

.links a {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease;
    padding: 0.4rem 0.8rem;
    /* Spazio interno del link */
    border: 1px solid #333;
    border-style: groove;
    border-radius: 50px;
    /* Forma ovale */
    text-align: center;
}

.links a:hover {
    color: #0056b3;
}

/*media query*/
@media(min-width: 992px) {
    .logo img {
        max-width: 900px;
    }

    p {
        font-size: 32px;
    }

    .links {
        flex-direction: row;
    }

    .links a {
        font-size: 1rem;
    }
}