/*
    Auteur: Jackie Pan
    Date de création: 16.01.2025
    Description: Styles communs extraits des trois fichiers CSS.
*/

body, html {
    height: 100%;
    margin: 0;
}

header {
    font-size: 75px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

aside p {
    text-align: center;
}

nav {
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
	list-style-type: none;
}

div {
    padding: 20px;
	list-style-type: none;
}

#menuActif {
    color: #faf5f5;
    background-color: #0f0f0f;
}

a {
    color: white;
    text-decoration: none;
}

@media screen and (max-width: 1200px) {
    nav {
        display: block; /* Change la disposition en colonne */
        text-align: center;
    }

    nav div {
        padding: 10px 0; /* Espacement pour chaque élément */
    }

    img {
        width: 0%;
        height: 0%;
		margin: 0px;
    }
}