@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --light-primary-color: #000000;
  --light-secondary-color: #ffffff;
  --light-highlight-color: #ffae00;
  --light-footer-color: #a4a4a4;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-image: url(../img/bg_wall.png);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  width: 100vw;
  z-index: 5;
  position: relative;
}

.container::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -10;
  background-color: rgba(0, 0, 0, 0.7);
}

#canvasFun {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.title {
  margin-bottom: 50px;
}

h1 {
  color: var(--light-secondary-color);
  font-size: 120px;
  font-weight: 900;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
}

h2 {
  color: var(--light-secondary-color);
  font-size: 52px;
  font-weight: 800;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
}

h2 span {
  color: var(--light-highlight-color);
  font-weight: 300;
}

h3 {
  color: var(--light-secondary-color);
  font-weight: 400;
  letter-spacing: 8.3px;
}

.countdown {
  display: flex;
  margin: 30px;
  color: var(--light-highlight-color);
  font-size: 50px;
  font-weight: 800;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
}

.countdown div {
  width: 3em;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  margin: 25px;
  border: 2px solid #4f4f4f;
  box-shadow: 0px 0px 30px black;
}

.countdown span {
  display: block;
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 6px;
}



/* MEDIA QUERY BREAKPOINTS */



@media (max-width: 768px) {

  .countdown {
    display: flex;
    padding: 5px;
    align-items: center;
    justify-content: center;
    font-size: 30px;
  }

  .countdown div {
    width: 75px;
    margin: 5px;
  }

  .countdown span {
    font-size: 9px;
    font-weight: 500;
    padding: 1px;
    letter-spacing: 2px;
  }

  h1 {
    margin: 20px auto;
    font-size: 40px;
    font-weight: 800;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
  }

  h2 {
    font-size: 22px;
    font-weight: 800;
    text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
  }

  h3 {
    color: var(--light-secondary-color);
    font-size: 10px;
    font-weight: 400;
    line-height: 2;
    width: 320px;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 96px;
    font-weight: 800;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
  }
}

/* PRELOADER */



#preloader {
  background: #000000 url(../img/preloader.gif) no-repeat center;
  background-size: 3%;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 100;
}