@font-face {
    font-family: 'Whitney Light';
    src: url('fonts/whitneylight.otf') format('opentype');
}

@font-face {
    font-family: 'Whitney Semibold';
    src: url('fonts/whitneysemibold.otf') format('opentype');
}

body{
    background-color:#769FD1;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family:'Whitney Semibold';
}

.liens{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    border: #D22525 5px solid;
    padding:10px;
    
}

a{
    text-decoration:none;
    background-color: #195795;
    border-radius:5px;
    padding:5px;
    width:100%;
    margin:5px;
    color:white;
    
}

a:hover{
    background-color: #3D7BB8;
    
}


