body{
  margin: 0;
  padding: 0;
  font-family: Arial;
  color: white;
  background-color: #fea600;
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-size: 1em;
}

.container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

button{
  font-size: inherit;
}

p{
  font-size: 2em;
  font-weight: bold;
}

.time{
  font-weight: 500;
}

.button-container{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.button-container button{
  border: solid;
  border-color: white;
  background-color: transparent;
  color: white;
  border-radius: 0.5rem;
  padding: 1rem 4rem;
  cursor: pointer;
  transition: all 0.2s;
  border-width: 0.1rem;
}

.button-container button:active{
  background-color: hsla(0, 0%, 0%, 0.5);
}

