body {
  font-family: "League Spartan", sans-serif;
}

img {
  max-width: 100%;
}

:root {
  --clr: #ff3d58;
  --h: 55px;
  --w: 55px;
  --color-dark-grey: darkgray;
}

.dark-grey {
  color: var(--color-dark-grey);
}

.fw-500 {
  font-weight: 500;
}

.opacity {
  background-color: rgba(0, 0, 0, 0.7);
}

.detail-ul li:nth-child(2),
.detail div:nth-child(2) {
  border-left: 2px dotted #fff;
  border-right: 2px dotted #fff;
}


@media only screen and (max-width: 990px) {

  .detail-ul li:nth-child(2),
  .detail div:nth-child(2) {
    border-left: 0px dotted #fff;
    border-right: 0px dotted #fff;
  }

}

.social-ul li {
  margin: 0 5px;
  transition: .5s;
}

.social-ul li a {
  color: #fff;
}

.social-ul li:hover {

  transition: .5s;
  transform: scale(1.5);
}

.logo {
  width: 20%;
}

#demo {
  width: 50%;
}

#demo p {
  letter-spacing: 3px;
  color: darkgray;
}


@media only screen and (max-width: 990px) {
  .parallax-window {
    height: 100%;
  }

  #demo {
    width: 60%;
  }

  .logo {
    width: 30%;
  }
}

@media only screen and (max-width:667px) {
  .logo {
    width: 50%;
  }
}

@media only screen and (max-width:555px) {
  #demo {
    width: 100%;
  }

  #demo p {
    letter-spacing: 0px;
    color: darkgray;
  }

  .logo {
    width: 70%;
  }

  /* .detail div:nth-child(2) {
    border-top: 2px dotted #fff;
    border-bottom: 2px dotted #fff;
  } */
}

.clock {
  width: 200px;
  height: 200px;
  border-radius: 50%;

  border: 1px solid rgb(255, 255, 255);
  /* box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.9); */
  display: flex;
  justify-content: center;
  align-items: center;
}

.min-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;

  border: 2px solid rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
}

.clock span {
  position: absolute;
  transform: rotate(calc(30deg * var(--i)));
  inset: 12px;
  text-align: center;
}

.clock span b {
  transform: rotate(calc(-30deg * var(--i)));
  display: inline-block;
  font-size: 20px;
}

.hand {
  position: absolute;
  /* left: 100%; */
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

#min i {
  position: absolute;
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100px;
  left: 93px;
}

#sec i {
  position: absolute;
  background-color: white;
  width: 15px;
  height: 15px;
  border-radius: 100px;
  left: 116px;
}


#demo sup {
  margin: 0 5px;
  font-size: 20px;
}
