@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding: 0;
    margin: 0;
}
.container{
    width: 100vw;
    height: 100vh;
}
.card{
    font-family: Raleway;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.card h1{
    font-size: 5vw;
    color: rgb(30, 245, 30);
}
.card p{
    margin-top: 40px;
    font-size: 2vw;
    
}
.quiz-details{
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6vw;
}
.quiz-details p{
    border-radius: 20px;
    font-size: 1.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
       width: 240px;
       height: 150px;
       background-color: rgb(247, 217, 217);
       color: black;
}
.container a{
    margin-top: 50px;
    width: 150px;
    height: 60px;
    font-size: 1.2vw;
    background-color: yellow;
    transition: all ease-in-out 0.2s;
    cursor: pointer;
     display: flex;
    justify-content: center;
    align-items: center;
     text-decoration: none;
     font-weight: 800;
  color: inherit;
  
    
}
.container a:hover{
    background-color: goldenrod;
}


@media only screen and (max-width: 380px){

.container{
    
    height: 90vh;
}

   .card h1{
    
    font-size: 15vw;
    color: rgb(30, 245, 30);
}
.card p{
    margin-top: 10px;
    font-size: 4vw;   
}
 #f-p{
    height: 60px;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
text-align: center; 
}

.quiz-details{
    margin-top: 20px;
flex-direction: column;
    gap: 6vw;
}
.quiz-details p{
    font-size: 4vw;
       width: 200px;
       height: 50px;
 
}
.container a{
 
    font-size: 4vw;
    background-color: yellow;
border-radius: 10px;
    
}


}