
html, body {
  height: 100%;
  margin: 0;
  background-color: #444;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  color: #eee;
}

#you {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

#no {
  background-color: #8b0000; 
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  border: 4px solid black;
  border-radius: 12px;
  color: #fff;
  font-weight: bold;
  user-select: none;
  transition: all 0.3s ease;
  cursor: pointer;
}


#no:hover {
  background-color: #228B22;
  border-style: dashed;
  border-width: 6px;
  color: violet;
  font-style: italic;
}

#time {
  font-size: 3rem;
  font-weight: 700;
  color: steelblue;
  
}
