:root {
    --default-color : rgb(148, 145, 145)
}

* {
    font-family: Arial, Helvetica, sans-serif;
}

header
{   
    display: flex;
    background-color: rgb(0, 0, 0);
    color: whitesmoke;
    height: 100px;
    width: 100%;

    justify-content: center;
    align-items: center;
}


h1 {
    text-decoration: underline;
    text-align: center;
    margin-top: 20px;
    text-transform: uppercase;
}

li 
{
    margin-bottom: 10px;
}


#verbs
{
    width: 600px;
    height: auto;

    background-color: var(--default-color);
    color: black;

    margin: auto;
    margin-top: 50px;

    padding-left: 100px;
    padding-bottom: 10px;
    padding-top: 5px;

    border-radius: 20px;
}


.list
{
    display: none;
}


.answer
{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 50px;
    
    height: 500px;
    width: 500px;
    

    background-color: var(--default-color);
    border: 5px solid black;

    font-size: 20px;  
}

.statistique 
{   
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 500px;
}

.score
{
    margin-right: 200px;
}

.nbrVb
{
    margin-left: 100px;
}

.labelVbFr 
{
    padding-top: 50px;
}


.userVerb
{
    margin-top: 20px;
    height: 40px;
    font-size: 20px;

    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 20px;

    border-radius: 30px;
    border: 1px solid black;

    background-color: transparent;
}

.userVerb:focus{
    background-color: white;
}

.userVerb::placeholder {
    color: rgba(0, 0, 0, 0.644);
}



label:not(.ColumnVbIrr)
{
    text-transform: capitalize;
    text-decoration: underline;
    margin-bottom: 60px;
    font-size: 30px;
}

.submit
{
    background-color: black;
    color: var(--default-color);
    height: 50px;
    width: 100px;
    font-size: 20px;
}

.ColumnVbIrr
{
    margin-bottom: 50px;
    font-size: 25px;
}



@media all and (max-width: 700px) {
    #verbs {
        width: auto;
    }
}

@media all and (max-width: 500px) {
    .fa-solid {
        display: none;
    }

    header {
        font-size: 15px;
        height: auto;
        width: auto;
    }

    #verbs {
        display: flex;
        flex-direction: column;
        width: auto;
        padding-left: 20px;
        font-size: 15px;
        
    }

    .answer {
        font-size: 15px;
        width: auto;
    }

    .statistique
    {   
        display: block;
        justify-content: space-between;
        width: 200px;
        margin-right: 90px;
    }

    .score
    {
        margin: auto;
        margin-bottom: 10px;
    }

    .nbrVb
    {
        margin: auto;
    }

    .answer .formEntry {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: auto;
        padding: auto;
    }

    .answer .formEntry .submit{
        margin: auto;
        padding: auto;
        margin-bottom: 25px;
    }
}

