
body{
    background-color: rgba(189,239,255, 0.2);
    font-family: 'Arial Narrow', Arial, sans-serif;
}


header{
    display: grid;
    grid-template-columns: 85% 15%;
    justify-content: space-around;
    background-color: #6692E8;
    color: #E8F8FE;
    position: sticky;
    top: 0px;
    left: 0px;
    font-size: 1.5rem;
    animation: 0.8s ease-in-out slidein;
}
a{
    text-decoration: none;
    color: #E8F8FE;
}

header .deux{
    display: grid;
    grid-template-columns: 33% 33% 33%;
    text-align: center;
}

header img{
    width: 60%;
}

corps{
    text-align: center;
    justify-content: center;
    
}

corps h1{
    font-size: 2.5rem;
    text-decoration: underline;
}
.border{
    border: 2px solid #6668E8;
    border-radius: 20px;
}

h5{
    text-align: center;
    font-size: 1.5rem;
}

.dpart{
    display: flex;
    font-size: 1.5rem;
    text-align: justify;
    padding: 3%;

}
.dpart img{
    width: 25%;
    border-radius: 20px;
}

.part333 img{
    width: 75%;
    border-radius : 20px;
    align-self: center;
}

.part333{
    font-size: 1.5rem;
    text-align: left;
    padding: 3%;
    width: 70%;
    align-self: center;
    justify-self: center;
}

.parties{
    width: 75%;
    align-self: center;
    justify-self: center;
}
.margintb{
    margin-top: 3%;
    margin-bottom: 3%;
    background-color: #8DD3F9;
}
.dpdm{
    width: 50%;
}

body{
    background-color: rgba(189,239,255, 0.5);
}

.part1{
    font-size: 1.5rem;
}

.dpart p{
    padding-right: 5%;
}



a :hover{
    animation: 0.2s ease-in forwards colors;
}

@keyframes colors {
    from{
        padding-top: 0%;
        color: white;
    }
    to{
        padding-top: 1%;
        color: rgb(180, 220, 220);
    }
    
}


@keyframes slidein {
    from {
      margin-left: 100%;
    }
    to {
      margin-left: 0%
    }
  }