body, html {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('img/387b29cd030c482482544be30a0020f8.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.heading1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  color: #fff;
  margin-top: -70px;
  margin-bottom: 0;
}

h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
}

.paragraph, .counter {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  color: #fff;
  margin-top: 0;
}

#countdown {
  font-family: 'Oswald', sans-serif;
  color: #ff0000; /* RED */
}

.points {
  color: #fff;
}

.points .fa-star {
  color: #ff1a1a; /* RED */
}

.points ul {
  list-style-type: none;
  margin-top: 20px;
  text-align: left;
}

.points ul li {
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
}

.button {
  margin-top: 10px;
}

/* BUTTON LINK */
.button a {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  padding: 15px 30px;
  background-color: #ff0000; /* RED */
  color: #fff;
  font-size: 40px;
  line-height: 48px;
  border-radius: 40px;
  cursor: pointer;
  animation: buttonAnimation 2s infinite;
  text-decoration: none;
}

.button a:hover {
  animation-play-state: paused;
}

@keyframes buttonAnimation {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

.countsize {
  font-size: 40px;
}

/* MOBILE */
@media (max-width: 480px) {
  .heading1 { font-size: 2.5rem; }
  .paragraph { font-size: 1.5rem; }
  .button a {
    font-size: 22px;
    padding: 10px 40px;
  }
  .counter { font-size: 1.4rem; }
}

/* MAIN BUTTON */
.button {
  min-width: 300px;
  min-height: 60px;
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #ff0000 0%, #b30000 100%);
  border-radius: 1000px;
  box-shadow: 12px 12px 24px #b30000;
  cursor: pointer;
  position: relative;
}

button::before {
  content: '';
  border-radius: 1000px;
  min-width: calc(300px + 12px);
  min-height: calc(60px + 12px);
  border: 6px solid #ff0000;
  box-shadow: 0 0 60px #ff0000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s;
}

.button:hover { transform: translateY(-6px); }

button:hover::before {
  opacity: 1;
}

button::after {
  content: '';
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 6px solid #ff0000;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

@keyframes ring {
  0% { width: 30px; height: 30px; opacity: 1; }
  100% { width: 300px; height: 300px; opacity: 0; }
}
