html {
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    height: 100vh;
    background-color: #0e1d3c;
    color: #a1e0f4;
    font-family: 'Red Hat Mono', monospace;
}

header {
    height: 100px;
    width: 100%;
    background-color: #0e1d3c;
    text-align: right;
    position: sticky;
    top: 0;
    left: 0;
    border-bottom-style: double;
    border-color: #a1e0f4;
    border-width: 1px;
    overflow: hidden;
}

header h1::before {
    content: "(";
    transform: scale(1);
}

header h1::after {
    content: ")";
}

footer {
    height: 100px;
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    border-top-style: double;
    border-color: #a1e0f4;
    border-width: 1px;
}


section {
    height: calc (100%-100px);
}

section #data {
    height: 100%;
}
#question0,
#commentaire1 {
    font-size: 25px;
}

#question1,
#question2,
#question3,
#question4 {
    font-size: 18px;
    font-weight: 400;
}

.form-check {
    display: flex;
    align-items: baseline;
}

section article #reponses label {
    margin: 25px 15px;
}

button {
    background-color: #0e1d3c;
    border: 1px solid #a1e0f4;
    border-radius: 5px;
    font-size: 20px;
}

button:hover {
    background-color: #a1e0f4;
    color: #0e1d3c;
}






