@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');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}

body{
    font-family: 'Poppins','Roboto',sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background-color: black;
}

.header{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.logo{
    width: 3vw;
    margin: 5px;
}

heading{
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: 666;
    width: 90%;
}

h1{
    color:black;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 98%;
    margin:10px;
    text-align: center;
    background-color: white;
    border-radius: 5px;
    
}

.cards{
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns:repeat(5 ,1fr);
    margin: 5px;
    width: 90%;
}


.card{
    background-color: white;
    width: 17vw;
    height: 40vh;
    border-radius: 5px;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.language{
    text-align: center;
    font-size: 20px;
    font-weight: 666;
    height: 15%;
    background-color: black;
    width: 90%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin: 5px;
}

.storyName{
    text-align: center;
    height: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding: 0px 5px;
}

.h{
    display: none;
}

button{
    font-size: 18px;
    padding: 0px 5px;
    font-weight: 666;
    margin: 5px;
}




@media (max-width:600px) {
    .heading{
       font-size: 40px; 
    }

    .logo{
        width: 10vw;
    }

    h1{
        font-size: 21px;
    }

    .cards{
        display: flex;
        flex-direction: column;
    }

    .card{
        width: 90%;
    }
}