/* Page crée par Parent Julien le 9 janvier 2025 */
body {
    background-image: url("../Images_Projet/backgroundHome.png");
    background-size: cover;
    background-color: black;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    color: white;
    padding-top: 20px;
}

h1 {
    font-size: 80px;
    margin: 0;
}

.soustitre {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 24px;
    margin-top: 10px;
    color: white
}

.container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 50px;
    align-content: flex-end;
}

a {
    text-decoration: none;
    color: rgba(255, 94, 0, 0.904);
}

nav :hover {
    transform: scale(1.2);
    transition-duration: 1s;
    border-style: solid;
    background-color: rgb(53, 24, 0);
}

footer {
    margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
    h1 {
        font-size: 50px;
    }

    .soustitre {
        font-size: 18px;
    }

    .container {
        flex-direction: column;
        gap: 20px;
        font-size: 30px;
    }

    footer {
        margin-bottom: 30px;
    }
}