*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

body {
    background-color: #000000;
}

.cronometro{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.tempo{
    width: 100%;
    display: flex;
    justify-content: center;
}

.tempo h1{
    color: #4E4FEB;
    font-size: 10rem;
}

button {
    border-radius: 50px;
    width: 150px;
    height: 60px;
    border: none;
    background-color: #4E4FEB;
    color: white;
    font-size: 20px;
    margin: 50px 50px 0px 0px;
}

button:last-child{
    margin: 50px 0px 0px 0px
}

button:hover{
    cursor: pointer;
    background-color: #068FFF;
}

@media (max-width: 768px) {
    .tempo h1{
        font-size: 0rem;
        height: 80%;
        display:flex;
        flex-direction: column;
        align-items: center;
    }
    .tempo h1 span{
        font-size: 5rem;
    }
    .botao{
        display:flex;
        flex-direction: column;
    }

    button {
        width: 100%;
        height: 40px;
        font-size: 20px;
        margin-top: 10px;
    }

    button:last-child{
        margin-top: 10px;
    }
  }     