@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v40/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUZiZQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: "Oswald", sans-serif;
}

.Box-Container {
  margin: auto;
  width: 50%;
  border: 10px solid #000000;
  border-radius: 15px;
  background-color: #000000;
}

.Bottom-Box {
  display: flex;
  flex-direction: row;
  width: 100%;
  border-radius: 0 0 0 15px;
}

.Left-Box {
  width: 25%;
  margin: auto;
  text-align: center;
  border-radius: 0 0 0 15px;
  background-color: #000000;
}

.Right-Box {
  width: 75%;
  margin: auto;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  background-color: #f4f4f4;
  color: #000;
}

.Header-Name {
  font-size: 35px;
}

.Date {
  font-size: 25px;
}

.Hour {
  font-size: 18px;
  margin-bottom: 2.5%;
}

.Result {
  font-size: 45px;
  font-weight: bold;
  color: #f4f4f4;
  text-align: center;
  width: 50%;
  margin: auto;
  border-radius: 50px;
  letter-spacing: 2px;
  padding-bottom: 5px;
  border: 1px solid #fff;
  background-color: #202020;
  margin-bottom: 2.5%;
}

.Logo-Brand {
  margin-top: 1.5%;
  width: 25%;
}

.Logo-Pasaran {
  width: 70%;
}

.lds-hourglass {
  display: inline-block;
  position: relative;
  margin-top: 7px;
  width: 60px;
  height: 60px;
}

.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  box-sizing: border-box;
  border: 28px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}

@media screen and (max-width: 1200px) {
  .Box-Container {
    width: 100%;
  }

  .Result {
    margin-bottom: 5%;
  }

  .Logo-Brand {
    width: 50%;
  }

  .Logo-Pasaran {
    width: 70%;
  }
}

@media screen and (max-width: 500px) {
  .Header-Name {
    font-size: 20px;
  }

  .Date {
    font-size: 18px;
  }

  .Hour {
    font-size: 15px;
  }

  .Result {
    font-size: 30px;
  }

  .Logo-Brand {
    width: 60%;
  }

  .Logo-Pasaran {
    width: 100%;
  }
}
