@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100VW;
    background-color: #ededed;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.proposition {
    height: 100px;
    width: 472px;
    margin-top: 240px;
    background-color: #5372f0;
    font-size: 4.5rem;
    text-align: center;

    border:solid 2px #5372f0;
    box-shadow: 5px 5px 17px 0px black;
}

.agire {
    height: 60px;
    width: 472px;
    margin-top: 40px;
    background-color: #fff;

    border: solid black 1px;
    font-family: 'Poppins', monospace;
    font-size: 3rem;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.agire:hover {
    cursor:pointer;
}

.resultat {
    height: 100px;
    width: 472px;
    margin-top: 28px;
    border-radius: 0;
    border:solid #cacaca 1px;

    font-size: 4rem;
    font-weight: 400;
    font-family: 'Roboto Mono', monospace;
    text-align: center;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button { 
	-webkit-appearance: none;
}