:root {
  --mobile-font-size: 12px;
  --secondary-font-color: #ec407e;
  --icon-color: #f7f984;
}

p {
  font-size: 18px;
}
footer {
  color: var(--secondary-font-color);
}

a {
  text-decoration: none;
  color: var(--secondary-font-color);
}
h5 {
  font-size: 30px;
}
.carousel-box {
  height: 750px;
}
.carousel-image {
  height: 100%;
  object-fit: cover;
}
.checkbox {
  opacity: 0;
  position: absolute;
  display: none !important;
}
.checkbox-label {
  background-color: #111;
  width: 50px;
  height: 26px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fa-moon {
  color: var(--icon-color);
}
.fa-sun {
  color: var(--icon-color);
}
.checkbox-label .ball {
  background-color: #fff;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}

.checkbox:checked + .checkbox-label .ball {
  transform: translateX(24px);
}
#checkbox {
  display: none;
}

@media (max-width: 800px) {
  h5 {
    font-size: 15px;
  }
  p {
    font-size: var(--mobile-font-size);
    margin: 0;
  }
  footer {
    font-size: var(--mobile-font-size);
  }
  .carousel-box {
    height: 300px;
  }
  .carousel-image {
    height: 100%;
    object-fit: cover;
  }
}
