@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.flex{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
}

body{
    background-color: black;
    font-family: 'Poppins' , sans-serif;
}

main{
    flex-direction: column;
}

h1{
    text-align: center;
    width: 80vw;
}

.hh{
    font-size: 35px;
    background-color: white;
    width: 80vw;
    padding: 0 15px;
    border-radius: 5px;
    font-weight: 666;
    font-stretch: expanded;
}

.hhh{
    font-size: 25px;
    color: white;
    font-weight: 666;
    width: 95vw;
    margin: 15px;
}

h2{
    color: white;
    text-align: center;
    margin: 10px;

}

.content{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.adContainer{
    overflow: hidden; /* Hide images outside the container */
  position: relative; /* For positioning the images */
}

.myntraBanner{
    height: 15vh;
    
    
}

.myntraBanner.active {
    opacity: 1; /* Show the active image */
  }

  p{
    color: white;
    font-size: 20px;
    font-weight: 666;
    text-align: center;
}

.footer{
    height: 10vh;
    width: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.foot{
    text-decoration: none;
    color: white;
    font-weight: 700;
}


  


@media( max-width:600px){


h1{
    font-size: 20px;
    width: 95vw;
}

.hh{
    font-size: 20px;
    font-weight: 666;
}

.hhh{
    font-size: 14px;
    font-weight: 666;
    height: 15vh;
    padding: 5px 0;

}

.content{
    flex-direction: column;
}

.adContainer{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.myntraBanner{
    width: 85vw;
    height: 15vh;
}









}



