@charset "UTF-8";

*{
    border: none;
    padding: 0px;
    margin: auto;
    box-sizing: border-box;
}

body {
    background-color: lightsalmon;
}

.timer {
    display: flex; 
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 300px;
    background-color: #eee;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    border: 3px solid #888;
}

.div_data {
    display: flex;
    justify-content: center;
    padding: 20px;
    margin-top: 10px;
}

.div_relogio{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    background-color: gray;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    font-size: 1.5em;
}

input[type='number'] {
    border: 1px solid black;
    font-size: larger;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px;
    margin-top: 10px;
}

.comandos {
    display: flex;
    justify-content: center;
    align-items: center;
}

button {
    background-color: gray;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    color: white;
}

.alarme {
    background-color: darkred !important;
    color: white !important;
}

div.retorno {
    background-color: #D98F89;
    width: 200px;
    border-radius: 10px;
    text-align: center;
    margin: auto;
    margin-top: 20px;
    padding: 10px;
}

div.retorno > a {
    color: white;
    text-decoration: none;
}
