.content {
    text-align: center;
    margin-top: 25px;
}


h2{
    color : var(--colorContraste);
    margin-top: 10px;
}

.content p, .questionConfirmation {
    font-weight: bolder;
    margin-top: 15px;
    line-height: 1.2;
    padding: 0px ;
}

.questionConfirmation{
    color: var(--colorTexte);
}

#actions {
    padding: 30px 20px;
}

#actions h2 {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 20px;
}

h3 {
    font-size: 2rem;
    color: #555;
    margin-bottom: 10px;
}

form {
    width: 100%;
}

#options,
#optionsConfirmation {
    display: grid;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

#startTest,
#resumeTest,
#resetTest,
#confirmationResetTest,
#annuleResetTest,
#clotureTest,
#retourTest {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 20px 15px;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.6s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font: inherit;
}

#startTest,
#resumeTest,
#clotureTest {
    background-color:  var(--colorLogoEnseignement);
}

#retourTest {
    background-color: var(--colorLogoEnseignement);
}

#confirmationResetTest,
#resetTest {
    background-color: rgb(220, 53, 69);
}

#annuleResetTest {
    background-color: rgb(108, 117, 125);
}

#resumeTest:hover,
#resetTest:hover,
#confirmationResetTest:hover,
#annuleResetTest:hover {
    transform: translateY(-3px);
}

#popup {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(229, 232, 233, 0.98);
    opacity: 1;
    padding: 0px 15px 0px 15px;
    align-items: center;
}

#popup p {
    margin: 45px 0px 50px;
    font-weight: bold;
}


@media screen and (max-width: 768px) {

    #startTest,
    #resumeTest,
    #resetTest,
    #confirmationResetTest,
    #annuleResetTest,
    #clotureTest,
    #retourTest {
        font-size: 1.25rem;
    }

    h1{
        font-size: var(--fontSizeTitre1Mobile);
        margin: 0px 5px 0px 5px;
    }
}