*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
.container{
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title{
    font-size: xx-large;
    text-transform: uppercase;

}

.container .number {
    font-size:150px;
}
.controls{
    display: flex;
    gap: 10px;
}
button{
    padding:0.255rem 1rem 0.25rem 1rem;
    width:150px;
    background:transparent;
    border: 2px solid black;
    border-radius: .5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    cursor: pointer;
    transition-property: background-color, color;
    transition-duration: 1s;


}
button:hover{
    background-color: rgb(54, 54, 54);
    color: white;
    
}


@media (max-width: 768px) {
    .controls {
        flex-direction: column;
        flex-direction: column-reverse;
    }
}
