@import url("https://fonts.googleapis.com/css?family=Lato:400,700|Montserrat:900");

html {
  display: grid;
  min-height: 100%;
}

body {
  display: grid;
  text-align: center;
  background: #11100f;
  background: #11100f;
  color: #fff;
  min-height: 100vh;
  margin: 0;
  -webkit-user-select: none !important;
  user-select: none !important;
}

.content {
  margin-top: 14%;
  padding: 2rem;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all .3s;
  z-index: 100;
}

.content::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(32, 32, 32, .5);
  box-shadow: 0 1px 2.4rem 0 rgba(0, 0, 0, .1);
  z-index: -1;
}

.container {
  position: relative;
  margin: auto;
  overflow: hidden;
  color: #f6f4f3;
  height: 100%;
}

/* .container::before {
    display: inline-block;
    background-image: url("https://coin98.com/static/media/bg-group-chain3.58f25ad4.png");
    background-repeat: no-repeat;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-position: 55% 3%;
    background-size: 100%;
    z-index: -1;
} */

.main {
  overflow: hidden;
  position: relative;
}

h1 {
  font-family: "Lato", sans-serif;
  text-align: center;
  font-size: 1.25em;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #276fbf;
}

#timer {
  color: #f6f4f3;
  text-align: center;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-size: 0.7em;
  letter-spacing: 5px;
}

.hours,
.minutes,
.seconds {
  display: inline-block;
  padding: 20px;
  width: 100px;
  border-radius: 5px;
}

.hours {
  background: #f6f4f3;
  color: #183059;
}

.minutes {
  background: #276fbf;
}

.seconds {
  background: #f0a202;
}

.numbers {
  font-family: "Montserrat", sans-serif;
  color: #183059;
  font-size: 4em;
}

footer {
  position: fixed;
  bottom: 0;
  padding: 10px;
  font-family: "Lato", sans-serif;
  font-size: 1em;
  width: 100%;
  text-align: center;
}

ul li {
  display: inherit;
  font-family: "Lato", sans-serif;
  text-align: center;
  font-size: 1em;
  letter-spacing: 5px;
  color: #f0a202;
  font-weight: bolder;
}

.content .info {
  p {
    color: #d9b432;
  }

  p.title {
    font-size: 1.25em;
    color: #ef2f3c;
  }
}

footer p {
  letter-spacing: 3px;
  color: #ef2f3c;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  color: #276fbf;
}

.bg-landing:first-child {
  background-image: url("https://coin98.com/static/media/background-banner1.78f4f742.png");
  animation: scale-frames-1st 60s ease infinite;
}

.bg-landing:nth-child(2) {
  background-image: url("https://coin98.com/static/media/background-banner2.429ade1b.png");
  animation: scale-frames-2nd 60s ease infinite;
}

.bg-landing:nth-child(3) {
  background-image: url("https://coin98.com/static/media/background-banner3.bc6fb40c.png");
  animation: scale-frames-3rd 60s ease infinite;
}

.bg-landing {
  z-index: -1;
  background-size: 100% 100%;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
}

@keyframes scale-frames-1st {
  0% {
    transform: scale3d(1.3, .5, 1.5);
  }

  50% {
    transform: scaleX(.8);
  }

  100% {
    transform: scale3d(1.3, .5, 1.5);
  }
}

@keyframes scale-frames-2nd {
  0% {
    transform: scaleY(1.3);
  }

  50% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleY(1.3);
  }
}

@keyframes scale-frames-3rd {
  0% {
    transform: scale3d(1.5, .3, 2);
  }

  50% {
    transform: scaleY(1.5);
  }

  100% {
    transform: scale3d(1.5, .3, 2);
  }
}