body {
  background-color: #ffeef2;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  background-color: #fff0f5;
  border: 4px dashed #ff99cc;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

h1 {
  font-size: 2rem;
  color: #ff66a3;
}

#timer {
  font-size: 4rem;
  margin: 20px 0;
  color: #cc3366;
}


.mascot img {
  width: 150px;
  height: auto;
  border-radius: 20px;
  margin-top: 10px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


.buttons button {
  margin: 10px;
  padding: 10px 20px;
  font-size: 1.2rem;
  border: none;
  border-radius: 10px;
  background-color: #ffb6c1;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.buttons button:hover {
  background-color: #ff6fa4;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.custom-time {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #cc3366;
}

.custom-time input {
  width: 60px;
  padding: 5px;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid #ffb6c1;
  margin: 0 5px;
}

#status {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #cc3366;
  font-weight: bold;
}

