* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Roboto', serif;
    color: #434343;
    font-size: 16px;
    background-image: linear-gradient(to top, #d5d4d0 0%, #d5d4d0 1%, #eeeeec 31%, #efeeec 75%, #e9e9e7 100%);

}

#header{
    height: 10vh;
}
#formSubmit{
    height: 10vh;
}
#result{
    height: 10vh;
}
#content{
    height: 70vh;
}

.center {
    text-align: center;
}

h1 {
    width: 100%;
    font-size: 3em;
    font-family: 'Roboto Slab', serif;
    text-align: center;
}

h2 {
    width: 100%;
    font-size: 1em;
    font-family: 'Roboto Slab', serif;
    text-align: center;
}

.form, #content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}


.formgroup {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;

}


.form-control {
    height: 30px;
    border-radius: 5px;
    background-color: #efefef;
    border: 1px solid #434343;
    color: #050B2B;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    height: 2em;
}

.form-control::placeholder {
    font-family: 'Roboto Slab', serif;
    color: #999;
}

#result {
    width: 100%;
    font-size: 3em;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

.evolution {
    width: 90%;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    border-radius: 10px;
}

.success {
    color: rgb(66, 167, 71);
}

.danger {
    color: rgb(226, 76, 76);
}

.m3 {
    margin: 3em;
}

.taux {
    display: flex;
    justify-content: space-evenly;
    width: 40%;
}


.mt3 {
    margin-top: 3em;
}

.pb1 {
    padding-bottom: 1em;
}

.pt1 {
    padding-top: 1em;
}

.mb1 {
    margin-bottom: 1em;
}

.w-100 {
    width: 100%;
}

.w-75 {
    width: 75%;
}

.w-50 {
    width: 50%;
}

.w-30 {
    width: 30%;
}

.w-25 {
    width: 25%;
}

.w-10 {
    width: 10%;
}

.text-center {
    text-align: center;
}

.input-clear-icon {}