/* Media Queries pour les petits écrans (téléphone) */
body {
    background-image: url('data/victor-fjord-victor.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin-top: 5%;
    padding: 0;
}
.titre, .contact {
    width: 90%;
    margin: 0 auto;
    padding: 1rem;
}
h1 {
    font-size: 2rem;
    margin: 0;
    color: #1E1B1C;
}
.contact {
    font-size: 1.5rem;
    color: #1E1B1C;
}
a {
    color: #3B3E6E;
    text-decoration: underline;
    font-weight: bold;
}

/* Media Queries pour les écrans moyens (tablettes) */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    .contact {
        font-size: 1.5rem;
    }
}

/* Media Queries pour les grands écrans (ordinateurs) */
@media (min-width: 1024px) {
    body{
        margin-top: 1%;
    }
    .titre, .contact {
        width: 50%;
    }
    h1 {
        font-size: 3rem;
    }
    .contact {
        font-size: 2rem;
    }
}
