/* Fonts */
@font-face {
  font-family: "OswaldRegular";
  src: url("../fonts/Oswald-Regular.ttf") format("truetype");
}
html {
  padding: 0;
}

body {
  background: url("../images/bg.jpg") no-repeat center center fixed;
  font-family: "OswaldRegular", sans-serif;
  background-size: cover;
  padding: 0;
  margin: 0;
}

h1 {
  letter-spacing: 4px;
  font-size: 56px;
  margin-top: 0;
}

span {
  letter-spacing: 2px;
  font-size: 26px;
}
span.random {
  padding: 8px;
}

.random {
  border-radius: 12px;
  backdrop-filter: blur(6px);
  padding: 8px 8px 0; /* Padding on every side except bottom */
  color: rgb(0, 255, 0);
  position: fixed;
  font-size: 42px;
  font-weight: bold;
}

.backgroundBox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}

.dialogFadeIn {
  animation: dialogFadeIn 1s cubic-bezier(0, 0.75, 0.55, 1) forwards;
}

.fadeIn {
  animation: fadeIn 1s cubic-bezier(0, 0.75, 0.55, 1) forwards;
}

@keyframes dialogFadeIn {
  from {
    opacity: 0;
    width: 15%;
  }
  to {
    opacity: 1;
    width: 50%;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#centerBox {
  margin: 16px;
  background: hsla(0, 100%, 50%, 0.4);
  box-shadow: 0 0 40px 10px hsla(0, 100%, 50%, 0.4);
  -webkit-backdrop-filter: blur(16px) saturate(3);
  backdrop-filter: blur(16px) saturate(3);
  border-radius: 24px;
  padding: 16px;
  text-align: center;
}

#copyrightBox {
  width: fit-content;
  height: fit-content;
  position: fixed;
  border-radius: 12px;
  background: hsla(0, 100%, 50%, 0.4);
  box-shadow: 0 0 40px 10px hsla(0, 100%, 50%, 0.4);
  -webkit-backdrop-filter: blur(16px) saturate(3);
  backdrop-filter: blur(16px) saturate(3);
  padding: 8px 10px 10px;
  z-index: 99;
  bottom: 8px;
  right: 8px;
}
#copyrightBox span {
  font-size: 20px;
}

#timer {
  font-weight: bold;
}

@media only screen and (max-width: 800px) {
  @keyframes dialogFadeIn {
    from {
      opacity: 0;
      width: 40%;
    }
    to {
      opacity: 1;
      width: 90%;
    }
  }
}

/*# sourceMappingURL=index.css.map */
