/* Google Fonts Poppins,Sans-serif */
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

/*By defults style this website */
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 20px auto;
}
/* Whole website style zone start */
.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
}

.header-image-container {
  background-color: #161616;
  border-radius: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 500px;
  margin: 5%;
}
.header-text {
  color: white;
  width: 50%;
  height: 500px;
  animation: background-color 1s ease-in-out infinite;
}

.header-text h1 {
  font-size: 3.5em;
  text-align: justify;
}
.header-image {
  width: 40%;
  height: 500px;

  background-image: url(./images/Banner\ Image.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.header-text .btn {
  margin-top: 40px;
}
.header-text .btn {
  border: none;
}
.header-text .btn a {
  padding: 15px 50px;
  background-color: tomato;
  border-radius: 10px;
  transition: 400ms;
  text-decoration: none;
  font-size: 1rem;
  color: white;
}

.header-text .btn a:hover {
  background-color: rgb(217, 33, 0);
  cursor: pointer;
  box-shadow: inset 0 0 20px white;
}

/* main-area-start */
.main-container {
  width: 90%;
  padding: 30px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 3fr;
}

.small-box {
  height: 350px;
  width: 250px;
  background-color: black;
  border: 1px solid rgb(160, 160, 160);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.small-box .left-button {
  border-radius: 10px;
  transition: 400ms;
  font-size: 1rem;
  font-weight: 700;
  width: 200px;
  padding: 10px 20px;
  background-color: #fff;
  text-align: center;
}
.small-box .left-button:hover {
  background-color: rgb(217, 33, 0);
  cursor: pointer;
  box-shadow: inset 0 0 20px white;
  color: white;
}
.small-box .left-button a {
  color: rgb(6, 6, 6);
  text-decoration: none;
}

.small-box .left-button a:hover {
  color: white;
}
.big-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;

  margin-left: 20px;
  margin: 5px;
}
.big-box-2 {
  row-gap: 100px;
}
.player-button {
  padding: 8px 20px;
  font-weight: 700;
  border: none;
  transition: 400ms;
  border-radius: 5px;
  background-color: tomato;
  color: white;
}
.player-button:hover {
  background-color: rgb(217, 33, 0);
  cursor: pointer;
  box-shadow: inset 0 0 20px white;
}
.player-item {
  border: 1px solid rgb(219, 219, 219);
  border-radius: 10px;
}
.flag-image {
  display: flex;
  justify-content: space-around;
}
.flag-image img {
  display: block;
}
.player-info {
  margin: 15px;
}
.player-info p,
.match-date p {
  color: grey;
}
.player-info span {
  margin-right: 25px;
}
.player-info i {
  margin-right: 10px;
}
.match {
  text-align: center;
}


 .bottom-btn {
  border: none;
  margin:0 auto;
  display: block;
  
}
.bottom-btn a {
  padding: 15px 50px;
  background-color: tomato;
  border-radius: 10px;
  transition: 400ms;
  text-decoration: none;
  font-size: 1rem;
  color: white;
}

.bottom-btn a:hover {
  background-color: rgb(217, 33, 0);
  cursor: pointer;
  box-shadow: inset 0 0 20px white;
}
/* <!-- main content area end --> */


/* footer area start */
hr {
  width:100%;
  background-color: rgb(75, 75, 75);
}
footer {
  height: 350px;
  width: 100%;
  color: white;
  margin-top: 100px;
  background-color: rgb(3, 3, 3);
}
.fa-brands{
  font-size: 40px;
  
}
footer h2{
  margin-top: 80px;
}

footer ul {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 70px ;
}
footer ul li {
  list-style: none;
}
footer ul li a {
  text-decoration: none;
  color: white;

  display: block;
  margin: 0 auto;
}
.footer-container {
  margin-top: 70px;
}
footer ul li a:hover {
  color: tomato;
}
/* footer area end */

/* animation area start */

.animate-charcter {
  text-transform: capitalize;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
  font-size: 40px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
/* animation area end */

/* ---------Responsive area start---------- */



/* mobile-devices */
@media (max-width: 575.98px) {
  .header-image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .header-text,
  .header-image {
    width: 90% auto;
    text-align: center;
  }
  .header-image {
    background-size: contain;
    background-position: center center;
  }
  .header-text .btn {
    margin-top: 30px;
  }
  .header-text .btn a {
    padding: 15px 20px;
  }

  .header-text h1 {
    font-size: 2em;
    text-align: center;
  }
  .main-container {
    width: 100%;
    margin-top: 0px;
    display: grid;
    grid-template-columns: 1fr;
  }
  .big-box {
    display: grid;
    grid-template-columns: 1fr;

    width: 100%;
  }

  .small-box {
    height: 200px;
    width: 100%;

    background-color: white;
    border: none;
  }
  footer{
    width: 100%;
  }
 .footer-container hr{
  visibility: hidden;
  
 }
 .footer-container ul{
  display: flex;
  flex-direction: column;
  align-items: center;

  
 }
 footer .social-icon{
  display: none;
 }

/* teblet-devices */
@media (min-width: 575.99px) and (max-width: 960px) {
  .header-image-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .header-text,
  .header-image {
    width: 90%;
    padding-left: 20px;
  }
  .header-text h1 {
    font-size: 2.5em;
  }
  .header-image {
    background-size: cover;
  }
  .main-container {
    width: 100%;
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .big-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .small-box {
    height: 100px;
    width: 100%;
    display: flex;
    flex-direction: row;

    justify-content: space-around;
    background-color: white;
    border: none;
  }

  .bottom-btn{
    visibility: visible;
  }
}

/* responsive end */

/* wrapper-end */


/* assignment 2 world cup website batch-06 programming hero ,Mustafa rahman */