html {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body {
  margin: 0;
  padding: 0;
}

.wrapper {
  background-image: linear-gradient(135deg, #660b4f, #43155f);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.js-clock {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.box {
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 10px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.5;
  color: white;
}

.clock-number {
  font-family: Rajdhani, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  color: white;
}

.clock-label {
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 5px;
  color: white;
}

.page-title {
  letter-spacing: 8px;
  text-transform: uppercase;
  margin: 10px 0;
  font-size: 1.2rem;
  font-weight: 300;
  color: white;
}

.div-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 20px;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}

.hover-effect {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(images/hearties.png);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .hover-effect {
  transform: scale(1.05);
}

.image-container:hover .overlay {
  opacity: 1;
}

@media (max-width: 767px) {
  .wrapper {
    height: auto;
    padding: 20px 0;
  }

  .js-clock {
    flex-wrap: wrap;
    margin-top: 5px;
  }

  .box {
    width: 80px;
    height: 80px;
    margin: 5px;
    font-size: 12px;
  }

  .clock-number {
    font-size: 2rem;
  }

  .page-title {
    font-size: 1rem;
    letter-spacing: 6px;
    margin: 10px 0;
  }

  .div-block {
    padding: 10px;
  }

  .image-container {
    max-width: 100%;
    height: auto;
  }
}
