
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: "Poppins", sans-serif;
}
.container{
    max-width: 1400px;
    margin: 0 auto;
}
/* banner style  */
/* animation */
/* @keyframes banner-animation {
    0%{
        background-color: red;
    }
    50%{
        background-color: yellow;
    }
    100%{
        background-color: beige;
    }
} */
@keyframes player {
    0%{
        opacity: 0.5;
        transform: translateX(.20px)
    }
    50%{
        opacity: 0.5;
        transform: translateX(-10px);
    }
    100%{
        opacity: 0.7;
        transform: translateX(0px);
    }
}
.banner{
    display: flex;
    background-color: rgb(22, 22, 22);
    color: rgb(255, 255, 255);
    margin-top: 40px;
    align-items: center;
    gap: 80px
    animation-name: banner-animation;
    animation-duration: 2s;
}
.banner-left-side{
    /* align-items: center; */
    padding: 111px 80px;
    flex: 1;
    
}
.banner-title{
    font-size: 4.3rem;
    font-weight: 700px;
    /* color: rgb(255, 255, 255); */
    margin-bottom: 20px;
    line-height: 70px;
}
.banner-description{
    font-size: 1rem;
    margin-bottom: 30px;
}
.btn-primery{
    font-size: 1.25rem;
    font-weight: 400px;
    padding: 16px 25px;
    background-color: rgb(221, 0, 0);
    border-radius: 8px;
    border: none;
}
img{
    width: 100%;
}
.banner-right-side{
    padding-top: 33px;
    padding-right: 17px;
    flex: 1;
}
.banner-right-side img{
    display: block;
    animation: player 3s  infinite ease-in;
}

/* mani section style */
.upcoming-match{
    display: flex;
    /* flex: 1; */
    gap: 50px;
    /* background-color: aqua; */
    margin-top: 100px;
}
.btn-container{
    display: flex;
    flex-direction: column;
    width: 25%;
    gap: 15px;
    background-color: rgb(22, 22, 22);
    padding: 30px;
    height: fit-content;
    border-radius: 8px;
    /* width: 25%; */
    /* flex-basis: 500px; */
    
}
.btn-container .btn-primery:nth-child(1),
.btn-container .btn-primery:nth-child(2){
    background-color: rgb(255, 255, 255);
}
.match-right{
    /* flex-basis: 500px; */
    /* flex: 1; */
    /* background-color: brown; */
}
.match-right .btn-primery{
    background-color: white;
    color: black;
    border: 1px solid rgb(22, 22, 22);
    padding: 4px 16px;
    margin-top: 20px;
    margin-bottom: 15px;
}
.match-body{
    padding: 20px;
}
.match-right .match img{
    /* width: 312px; */
    width: 100%;
    height: 175px;
}
.match h3{
    font-size: 1.2rem;
    font-weight: 600px;
    color: rgb(22, 22, 22);
    margin-bottom: 20px;
}
.match-right .bottom-card{
    display: flex;
    gap: 55px;
}
.match-right{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
    column-gap: 24px;

}

/* footer style */
footer{
    background-color: rgb(22, 22, 22);
    margin-top: 130px;
    padding: 130px 350px;
}
.foot-title{
    font-size: 3rem;
    font-weight: 600px;
    color: rgb(255, 255, 255);
    margin-bottom: 100px;
    text-align: center;
}
.foot-link{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* justify-content: center;
    align-items: center; */
    gap: 50px
}
.foot-link li{
    list-style: none;
}
.foot-link li a{
    text-decoration: none;
    color: white;
}
/* responsive tab view  */

@media screen and (max-width: 992px) {
    .upcoming-match{
        flex-direction: column;
    }
    .btn-container{
        flex-direction: row;
        width: 100%;
        background: transparent;
    }
    .btn-container > *{
        flex: 1;
    }
    .btn-container .btn-primery{
        border: 1px solid black;
    }
    .match-right{
        grid-template-columns: repeat(2, 1fr);
    }
    .banner-title{
        font-size: 50px;
        line-height: 50px;
    }
    .banner-left-side{
        padding: 20px;
        padding-left: 50px;
    }
    .banner-right-side img{
        width: 100%;;
    }
    footer{
        padding: 30px;
    }
    .foot-link{
        grid-template-columns: repeat(4, 1fr); 
    }
}

/* responsive mobile device */

@media screen and (max-width: 768px) {
    .banner {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        
    }
    .banner-left-side{
        text-align: center;
        padding-left: 20px;
    }
    .btn-container{
        flex-direction: column;
    }
    .match-right{
        grid-template-columns: repeat(1, 1fr);
    }

    footer{
        width: 100%;
        padding: 50px;
        /* flex-direction: column; */
    }
    .foot-link{
        flex-direction: column;
    }
}
