html, body { 
    font-family: 'Trebuchet MS', Arial, sans-serif;
    height: 100%;
    font-size: 3vh; 
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0rem 1rem;
    background: rgb(11, 1, 11);
}

header img {
    padding-top: 0.5rem;
    display: block;       
    max-height: 15vh;     
    width: auto;
}

header a { 
    color: rgb(255, 252, 223);
    text-decoration: none;
    padding-right: 2rem; 
    display: inline-block;
    transition: transform 0.2s ease;
}

footer {
    background: rgb(11, 1, 11);
    padding: 0.75rem 1rem;
    text-align: center;
}

footer a { 
    display: inline-block;
    text-decoration: none;
    color: white;
    transition: transform 0.2s ease;
}

.ouais:hover{
    transform: scale(1.1);
}

footer a:hover {
    transform: scale(1.1);
}