* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: montserrat, sans-serif;

}


@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}



a{
  color: white;
  text-decoration: none; /* no underline */
}

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  position: relative;

  background-image:  url("../assets/bg.png");

  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
header:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: rgba(34, 34, 34, 0.5);

}
header .content {
  position: relative;
  z-index: 1;

}
header .content h1 {
  color: #FFF;
  font-size: 42px;
  font-weight: 900;
}
header .content h1 span {
  font-weight: 400;

}
@media screen and (min-width: 480px) {
  header .content h1 {
    font-size: 42px;
  }
}
@media screen and (min-width: 768px) {
  header .content h1 {
    font-size: 42px;
  }
}
@media screen and (min-width: 1024px) {
  header .content h1 {
    font-size: 56px;
  }
}
@media screen and (min-width: 1280px) {
  header .content h1 {
    font-size: 72px;
  }
}


header .content h2 {
  color: #FFF;
  font-size: 28px;
  font-weight: 400;
  margin: 30px 0px;
}
@media screen and (min-width: 480px) {
  header .content h2 {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  header .content h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1024px) {
  header .content h2 {
    font-size: 36px;
  }
}
@media screen and (min-width: 1280px) {
  header .content h2 {
    font-size: 42px;
  }
}
header .content .countdown {
  color: #FFF;
  font-size: 36px;
  font-weight: 800;
}
@media screen and (min-width: 480px) {
  header .content .countdown {
    font-size: 42px;
  }
}
@media screen and (min-width: 768px) {
  header .content .countdown {
    font-size: 56px;
  }
}
@media screen and (min-width: 1024px) {
  header .content .countdown {
    font-size: 72px;
  }
}
@media screen and (min-width: 1280px) {
  header .content .countdown {
    font-size: 88px;
  }
}


.my-icon {
  vertical-align: middle;
  font-size: 50px;
  margin-left: 50px;
  margin-bottom: 12px;
}

h1{
  animation: fadeIn 8s;
}

h2{
  animation: fadeIn 16s;
}

.countdown{
  animation: fadeIn 3s;
}

.my-text {
  display: inline-block;
  vertical-align: middle;

}

.my-fancy-container {
  display: inline-block;
  margin: 40px;

  margin-bottom: -20px;

}



/*# sourceMappingURL=countdown.css.map */
