body {
  margin: 0;
  padding: 0;
  font-family: "Cairo", sans-serif;
  background-color: #e7fafb;
  height: 100vh;
}

header {
  display: flex;
  justify-content: space-between;
  padding-top: 5px;
  padding-bottom: 30px;
}

.logo img {
  width: 125px;
  height: 130px;
  object-fit: contain;
}

.section {
  max-width: 1310px;
  margin: auto;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.speaker {
  padding-bottom: 20px;
  animation: fadeIn 0.6s;
}

.header-name h1 {
  text-align: center;
  font-size: 2em;
  margin: 0;
  color: #4d4d4d;
}

.clock {
  position: relative;
  height: 375px;
  margin-bottom: 10px;
}

svg {
  width: 100%;
  height: 100%;
  position: absolute;
}

circle {
  display: block;
  fill: transparent;
  stroke: #b3b3b350;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 0;
  stroke-width: 9px;
  transform-origin: 50% 50%;
  transform: rotate(-90deg);
}

circle.indicator {
  stroke: #12d0dc;
  z-index: 2;
}

circle.finished {
  stroke: red;
}

.finished span {
  color: red;
}

.value-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  width: 100%;
  height: 100%;
  font-size: 6.5em;
  color: #4d4d4d;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  gap: 50px;
  background: #ffffff;
  border-radius: 4px;
  width: fit-content;
  margin: auto;
  padding: 20px;
}

.buttons-container i {
  font-size: 3em;
  color: #4d4d4d;
  cursor: pointer;
}

.fa-arrow-rotate-left::before {
  content: "\f0e2";
}

.buttons-container i:hover {
  color: #12d0dc;
}

.button button {
  border: 0;
  font-family: "Cairo";
  padding: 20px;
  border-radius: 4px;
  font-size: 1em;
  line-height: 1;
  cursor: pointer;
  background: #12d0dc;
  color: #ffffff;
  transition: all 0.3s;
}

.button button:hover {
  background: #12d0dc80;
  transition: all 0.3s;
}

#speaker-1 #button-two {
  visibility: hidden;
}

#speaker-8 #button-one {
  visibility: hidden;
}

.none {
  display: none;
}
