/*
###############
    FONT
###############
*/

@font-face {
    font-family: 'roboto';
    src: url(../font/Roboto/Roboto-Regular.ttf) format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'digital';
    src: url(../font/ds_digital/DS-DIGI.TTF) format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* 
###############
    body
###############
*/

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'roboto';
    margin-top: 10%;
    background-color: lightgray;
}

button{
    height: 100px;
    width: 100px;
    font-size: 3em;
    margin: 5px;
    background-color: #ff9c08;
    border: 1px solid black;
    border-radius: 10px;
}

button:hover{
    border: 2px solid black;
}

button:active{
    border: 3px solid black;
}


.autre{
    background-color: gray;
}

.text{
    background-color: grey;
    width: 420px;
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    text-align: end;
    font-family: 'digital';
    font-size: 60px;
}

.text p{
    margin: 0px;
    color: white;
}