/*GLOBAL CSS FOR EVERY WEBPAGE*/

*{
    margin: 0px;
    padding: 0px;
    font-family: Avenir, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    color: white;
    background-color: #232329;
    padding-top: 80px;
}

.allLinks:hover {
    color: lightgray;
}

.allLinks {
    text-decoration: none;
    color: #90ee90;
}

.sous{
    display: none;
}

.sous li {
    float: none;
    text-align: left;
}

.sous a{
    padding: 10px;
    color: white;
    border-bottom: none;
    background-color: darkgreen;
    width: 200px;
}

.sous a:hover{
    border-bottom: none;
    background-color: #6fba6f;
}

li{
    list-style-type: none;
}

p {
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-size: 20px;
}

.justifiedParagraph {
    text-align: justify;
}

h1 {
    font-size: 54px;
}



h1, h2, h3, h4, h5, h6 {
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

article {
    margin: 40px 0px;
}

.bigLinks:hover {
    color: lightgray;
}

.bigLinks {
    text-decoration: none;
    color: lightgreen;
    font-size: 24px;
}
.bouton-result{
    display: flex;
    justify-content: center;
    align-items: center;

}

.bouton-vert {
    background-color: green;
    color: white;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 10px;
    margin-top: 20px;
}

.bouton-vert:hover {
    background-color: darkgreen;
}

/*BIG SCREENS*/
@media screen and (min-width: 769px) {
    main {
        margin: 50px 60px;
    }

    .scores {
        font-size: 1.5em;
        color: green;
        font-weight: bold;
        text-align: center;
        background-color: white;
        border-radius: 10px;
        margin: 10px 40px;
    }

    .scoreContent {
        width: 10%;
        min-width: 150px;
    }

    h2 {
        font-size: 2em;
        margin: 20px 0px;
    }

    .bigTextSpecial {
        font-size: 2em;
        font-weight: bold;
    }
}



/*Small screen*/
@media screen and (max-width: 768px) {

    h1{font-size: 32px;}

    h2{font-size: 20px;}

    p{font-size: 16px}

    main {
        margin: 20px;
    }

    .scores {
        font-size: 1.5em;
        color: green;
        font-weight: bold;
        text-align: center;
        background-color: white;
        border-radius: 10px;
        margin: 10px;
    }
    
    .bigTextSpecial {
        font-size: 1.5em;
        font-weight: bold;
    }
}

hr {
    margin-top: 30px;
}