body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #cf6ba7, hsl(29, 79%, 55%));
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #fff;
}
.container {
  background: #111;
  padding: 40px;
  border-radius: 30px;
  text-align: center;
  width: 80%;
}
#day {
  font-size: 36px;
  font-weight: bold;
  background: linear-gradient(to right, #00c6ff, #ff00cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}
.clock-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.clock-box {
  padding: 25px;
  border-radius: 22px;
  position: relative;
  width: 100px;
  z-index: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.clock-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #ff00cc, hsl(241, 88%, 48%), #00ffcc);
  z-index: -1;
  border-radius: 22px;
  padding: 6px;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.clock-box div {
  font-size: 48px;
  font-weight: bold;
}

.clock-box p {
  margin-top: 10px;
  font-size: 16px;
  color: #ccc;
}
.alarm-section {
  margin-top: 30px;
  color: #fff;
  text-align: center;
}

.alarm-section input,
.alarm-section button {
  padding: 8px;
  margin: 5px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
}
.alarm-section button {
  background-color: #00c6ff;
  color: white;
  cursor: pointer;
}
