* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Poppins;
}
img {
  max-width: 100%;
}
.display-flex {
  display: flex;
}
.btn {
  background-color: #dd0000;
  padding: 10px;
  color: white;
  font-weight: bol;
  border: none;
  border-radius: 10px;
  font-size: 10px;
}
.btn1 {
  background-color: white;
  padding: 10px;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  font-size: 10px;
}
.btn2 {
  background-color: white;
  padding: 10px;
  color: black;
  font-weight: bold;
  border-radius: 10px;
  font-size: 10px;
}
.container {
  max-width: 1280px;
  margin: auto;
}

/* animation section */
@keyframes banner-animation {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-10px);
    color: green;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.banner {
  background-color: black;
  color: white;
  align-items: center;
  border-radius: 30px;
  padding-left: 110px;
  margin: 50px auto;
  animation: banner-animation 0.5s reverse;
}
.content-part-sec {
  flex: 1;
}
.content-part-sec img {
  display: block;
  /* animation: banner-animation 0.5s forwards ease-in infinite; */
  /* animation: banner-animation 0.5s forwards; */
}
.content-part h1 {
  font-size: 4.3rem;
  font-weight: bold;
  line-height: 60px;
}
main {
  animation: banner-animation 0.5s reverse ease-in;
}
.content-part p {
  font-weight: 1rem;
  margin: 20px 0;
  max-width: 70%;
}
.content-part {
  width: 550px;
  flex: 1;
}
.match {
  gap: 35px;
}
.upcoming-sec {
  background-color: black;
  height: 230px;
  border-radius: 10px;
  padding: 30px;
  flex-direction: column;
  gap: 30px;
}
.card img {
  width: 312px;
  border-radius: 10px 10px 0 0;
}

.card h2 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 20px;
  margin: 12px auto;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  flex: 1;
}
.card-body {
  padding-left: 10px;
}
ul li {
  list-style: none;
  font-size: 0.8rem;
  color: rgba(22, 22, 22, 0.8);
}
ul {
  display: flex;
  gap: 20px;
}
