* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: linear-gradient(135deg, #6d83f2, #a6e3e9);
}

.container {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  text-align: center;
}

p {
  font-size: 1.8rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

p span {
  color: #6d83f2;
  font-weight: bold;
}

p::before {
  content: "🕒";
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
  color: #6d83f2;
}

.container:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

@media screen and (max-width: 430px) {
  p {
    font-size: 1.3rem;
  }

  p::before {
    font-size: 1.5rem;
  }
}
