body,
html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}

.hero {
  position: relative;
  height: 100vh;
  margin: 0;
  padding: 0;
  background:url('logo.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.838);
  z-index: -1;
}

.heading1 {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 3rem;
  color: #fff;
  margin-top: -150px;
  margin-bottom: 0;
}

h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
}

.paragraph,
.counter {
  
  font-size:1.5rem;
  color: #fff;
  margin-bottom: 20px;
}

#countdown,  #countdown2{
  font-family: 'Oswald', sans-serif;
  color:yellow;
}

#countdown{
 font-size: 2rem;
}

#countdown2{
 font-size: 1.5rem;
}

.points {
  color: #fff;
  margin-top: 0;
  
  
}


.points .fa-regular {
  color:yellow;
}

.points ul {
  list-style-type: none;
  margin-top: 15px;
  text-align: left;
}

.points ul li {
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}



.button1 {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -80px;
}

.button1 a, .button2 a {
  font-family: 'Oswald', sans-serif;
  padding: 15px 30px;
  background: #FFD700;
  color: #000;
  font-size: 40px;
  line-height: 20px;
  border: none;
  cursor: pointer;
  animation: buttonAnimation 2s infinite;
  text-decoration: none;
}

.button2 a {
  display: inline-block;
  border-radius: 5px;
}

.button1 a {
  padding: 15px 0;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.button1 a:hover,
.button2 a:hover {
  animation-play-state: paused;
}

.button1 {
  margin-top: 0px;
  margin-bottom: 80px;
}

@keyframes buttonAnimation {
  0% {
    
  
    transform: scale(.9);
  }

  50% {
    transform: scale(1);
    
  
  }

  100% {
    transform: scale(.9);
    
  
  }
}

/*Mobile Responsive*/
@media (max-width: 480px) {
  .heading1 {
    font-size: 2.5rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  .paragraph {
    font-size: 1.3rem;
  }

  .button2 a {
    font-size: 22px;
    padding: 10px 40px;
  }

  .button1 a {
    font-size: 20px;
    padding: 5px 0;
  }


  .counter {
    font-size: 1.4rem;
    
  }
}

/* New styles for arranging elements */
.content-wrapper {
  display: flex;
  align-items: center;
}

.counter {
 
  text-align: center;
}

.points {
  flex: 2;
}

.button4 {
  display: inline-block;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  box-shadow: 0px 0px 0px 7px rgb(4, 117, 151);
  color: yellow;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bolder;
  letter-spacing: 0.15rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  margin-top: 1rem;
  border-bottom:8px solid rgb(0, 0, 0);
  animation: buttonAnimation 2s infinite;
}
.button4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  border-radius: 10rem;
  z-index: -2;
}
.button4:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color:rgb(64, 255, 0);
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.button4:hover {
  color:  rgb(1, 1, 1);
}
.button4:hover:before {
  width: 100%;
}
.clr{
  color: white;
}