@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
body{
    font-family: 'Josefin Sans', sans-serif;
    background-color: #1e1e1e;
    color: #ddd;
    text-align: center;
    margin-bottom: 130px;
}

a {
    display: block;
    width: 100%;
    height: 100%;
   }

a:visited{
    color: #ddd;
    text-decoration: underline;
}
   
.navigation{
    font-size: 130%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 0.5%;
    list-style: none;
    padding: 0;
    margin-bottom: 2em;
}

.navigation__el{
    /*text-decorationunderline #AA090A;*/
    background-color: #AA090A;
    border: 1px solid #AA090A;
    color: #ddd;
    cursor: pointer;
}

.navigation__el--actif{
    background-color: #1e1e1e;
}

.navigation__el:hover{
    color: #ddd;
    border: 1px solid #ddd;
}

.navigation__lien{
    color: #ddd;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navigation__lien:visited{
    color: #ddd;
    text-decoration: underline #ddd;
}

.logo{
    width: 58px;
}

.citation{
    max-width: 40%;
    margin: auto;
    border: 3px solid #ddd;
    padding: 1em;
    margin-top: 3em;
    margin-bottom: 3em;
    font-size: 18px;
}

.citation__bouton{
    font-size: 16px;
    color: #ddd;
    border: 1px solid #ddd;
    background-color: #1E1E1E;
    padding: 12px;
    border-radius: 3px;
    box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.3);
    cursor: pointer;

}

.citation__bouton:hover{
    background-color: #AA090A;
}

.textes{
    text-align: left;
    max-width: 50%;
    font-size: 24px;
    margin: auto;
    line-height: 1.4em;
    margin-bottom: 3em;
}

footer{
    width: 100%;
    background-color: #1E1E1E;
    border-top: 1px solid #AA090A;
    bottom: 0;
    position: fixed;
}

.reseau{
    display: grid;
    list-style: none;
    grid-template-columns: repeat(5, 1fr);
    padding: 0;
}

.reseau__el{
    width: 58px;
    margin: auto;
}

.reseau__el--lien{
    font-size: 16px;
    color: #ddd;
    border: 1px solid #ddd;
    background-color: #1E1E1E;
    padding: 12px;
    border-radius: 3px;
    box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.reseau__el--lien:hover{
    background-color: #AA090A;
    color: #ddd;
}

.footer__lien{
    color: #ddd;
    text-decoration: none;
}

/* UI-kit */

.container{
    display: grid;
    text-align: left;
    padding-left: 2em;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: 
        "typo"
        "couleur"
        "liens";
}

.typo{
    grid-column-start:1 ;
    grid-column-end: 3;
    grid-row-start:2 ;
    grid-row-end:4 ;
}

.couleur{
    grid-column-start:1 ;
    grid-column-end: 2;
    grid-row-start:5 ;
    grid-row-end: 8;
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
}

.liens{
    grid-column-start:1 ;
    grid-column-end: 2;
    grid-row-start:8 ;
    grid-row-end: 10;
}

.couleur__el{
    border: 1px solid white;
    width: 56px;
    height: 56px;
}

.couleur--blanche{
    background-color: #ddd;
}

.couleur--rouge{
    background-color: #AA090A;
}

.visite{
    text-decoration: underline;
}