*{
    margin: 0;
    padding: 0;
}

body {
  background-color: rgb(1, 61, 71);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
#container {
  width: 300px;
  max-width: 90vw;
  background-color: white;
  border-radius: 15px;
  box-shadow: 2px 2px 2px black;
  padding: 20px;
  text-align: center;
}
h1{
    font-size: 1.5em;
    margin-left: 10px;
    padding-top: 15px;
}
#relogio{
    margin-left: 10px;
    padding-top: 5px;
    font-size: 2.5em;
}

#botoes {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}
.botao {
  width: 80px;
  padding: 6px 0;
  border: none;
  border-radius: 8px;
  background-color: #0a5f6a;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.botao:hover {
  background-color: #0d7c8b;
  transform: scale(1.05);
}
.pausa{
    color: red;
}
@media (max-width: 500px) {
  #relogio {
    font-size: 1.8em;
  }

  .botao {
    width: 70px;
    font-size: 0.8em;
  }
}