body{
    font-family: Arial, Helvetica, sans-serif;
}
header{
    text-align: center;
}
body{
    background-color: white;
}
nav{
    display: flex;
    width: 100%;
    justify-content: space-around;
    font-family: StarWarsFONT;
    font-size: 30px;
}
nav div{
    padding: 14px 0px 14px 0px;
    text-align: center;
    background-color: white;
    width: 100%;
    margin-bottom: 100px;
}

h2{
    text-align: center;
}
a{
    text-decoration: none;
    color: black;
}
/*voici ma balise qui me permet d'ajouter une nouvelle police à mon site*/
@font-face 
{
    font-family: "StarWarsFONT";
    src: url(../FONT/font.ttf);
}
h1
{
    font-family: StarWarsFONT;
}
h2
{
    font-family: StarWarsFONT;
}
.combo
{
    margin-top: 5%;
    margin-bottom: 1%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}
@media screen and (max-width: 1024px)
{
    nav
    {
        display: flex;
        flex-direction: column;
    }
    nav div
    {
        padding: 25px 0px 25px 0px;
    }
}

