body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  text-align: center;
  background-color: #f5f5f5;
}

.timer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 5% auto;
  padding: 5% 0;
  max-width: 800px;
  border: 1px solid #ddd;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.timer__section {
  display: flex;
  flex-direction: column;
  margin: 10px;
  padding: 20px;
  border-radius: 5px;
  background-color: #f5f5f5;
}

.timer__value {
  font-size: 4em;
  font-weight: bold;
}

.timer__label {
  font-size: 1.2em;
  margin-top: 10px;
  text-transform: uppercase;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel {
  display: flex;
  width: 100%;
  height: 100%;
}

.slide {
  flex: 0 0 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mini-player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #333;
  color: #fff;
  display: flex;
  align-items: center;
  z-index: 1;
}

.play,
.pause {
  width: 25px;
  height: 25px;
  background-color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  border: none;
  cursor: pointer;
}

.play:before {
  content: "▶";
}

.pause:before {
  content: "❚❚";
}
