@import url("https://fonts.googleapis.com/css2?family=Rubik&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Rubik", sans-serif;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

button {
  background-color: transparent;
  border: 0;
}

#mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: #000000;
  /* animation: changeMask 6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards; */
}

@keyframes changeMask {
  0% {
    opacity: 1;
  }
  17% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: center bottom / cover no-repeat url("../img/background.jpg");
  z-index: 0;
  /* animation: moveBackground 6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards; */
}

@keyframes moveBackground {
  0% {
    background-position: 0% bottom;
  }
  12% {
    background-position: 0% bottom;
  }
  70% {
    background-position: 45% bottom;
  }
  100% {
    background-position: 80% bottom;
  }
}
@keyframes showTitle {
  0% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showText {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#bgVideo {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  mix-blend-mode: screen;
}

.cursor {
  position: absolute;
  width: 25px;
  height: 25px;
  border: 0.1vw solid #d9e8ed;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: 1.8s ease-out;
  z-index: 10;
  animation: circle 8s linear infinite;
}

@keyframes circle {
  0% {
    transform: rotate(0deg) translate(-35px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-35px) rotate(-360deg);
  }
}
nav {
  position: fixed;
  background-color: #fff;
  border-radius: 0 0 20px 0;
  width: 20vw;
  height: 100vh;
  padding: 2vw;
  top: 0;
  left: -20vw;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 200;
  transition: 0.5s ease-out;
}
nav.toggle-btn {
  position: absolute;
  top: 2vh;
  left: 21vw;
  cursor: pointer;
  height: 3.7vh;
  width: 3vw;
  min-width: 30px;
  opacity: 0.5;
  transition: 0.3s ease-in;
}
nav.toggle-btn:hover {
  opacity: 1;
}
nav.toggle-btn span {
  width: 100%;
  height: 0.6vh;
  border-radius: 5px;
  background: rgb(255, 255, 255);
  display: block;
  margin-top: 0.5vh;
  transition: 0.2s ease;
}

.showNav {
  left: 0;
}
.showNav span {
  position: absolute;
}
.showNav span:nth-child(1) {
  transform: rotate(45deg);
}
.showNav span:nth-child(2) {
  opacity: 0;
}
.showNav span:nth-child(3) {
  transform: rotate(-45deg);
}

#errorDisplay {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.928);
  border-radius: 10px;
  top: 2vh;
  right: -22vw;
  margin-right: 2vw;
  padding: 1vw;
  min-width: 8vw;
  max-width: 20vw;
  min-height: 2vh;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 200;
  transition: 0.5s ease-out;
}
#errorDisplay p {
  text-align: right;
  font-size: small;
}
#errorDisplay .timeline {
  overflow: hidden;
  width: 100%;
  height: 5px;
  border: 1px solid rgba(0, 0, 0, 0.596);
  border-radius: 10px;
  line-height: 1px;
  margin-top: 5px;
  z-index: 200;
}
#errorDisplay #line {
  width: 100%;
  height: 6px;
  background-color: rgb(0, 43, 69);
  transition: 5s linear;
}

header {
  position: fixed;
  top: -5vh;
  left: 0;
  background-color: red;
  width: 100%;
  height: 5vh;
  z-index: 100;
}
header input {
  background-color: transparent;
  text-decoration: none;
  border: none;
}

main {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 50;
}
main svg {
  height: 8vh;
  margin-left: 3vw;
  float: right;
  transition: 0.3s ease-out;
}
main svg:hover {
  transform: scale(1.2);
}
main h1 {
  font-size: 4vw;
  font-weight: bold;
  color: whitesmoke;
  align-self: flex-start;
  opacity: 0;
}
main blockquote {
  align-self: flex-start;
  color: whitesmoke;
  opacity: 0;
}
main blockquote q {
  font-size: 1vw;
}
main blockquote figcaption {
  margin-bottom: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

footer {
  position: fixed;
  color: whitesmoke;
  line-height: 1rem;
  padding: 1vh;
  bottom: 0;
  width: 100%;
  height: 5vh;
  text-align: center;
  z-index: 100;
}
footer a {
  text-decoration: none;
}
footer a:visited {
  color: whitesmoke;
}

.container {
  display: none;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: space-between;
  gap: 0.2vw;
  width: 80%;
  padding: 2rem;
}
.container .week,
.container .week-ticked {
  flex-basis: 1.57%;
  background-color: transparent;
  border: 1px solid #323435;
  height: 0.5vh;
  width: 0.5vh;
}
.container .week-ticked {
  background-color: #55cbef;
} /*# sourceMappingURL=index.css.map */
