@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@700&family=DM+Sans:opsz,wght@9..40,700;9..40,800&family=Poppins:wght@400;700;800&family=Righteous&family=Rubik:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@700&family=DM+Sans:opsz,wght@9..40,700;9..40,800&family=Poppins:wght@700;800&family=Righteous&family=Rubik:wght@300;400&display=swap');
@media only screen and (max-width: 600px) {


*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    background-color: #161616;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    
}

main{
    display:flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    padding: 0px 15px 100px 5px;
}


.header_pg1{
    font-size: 2rem;
    margin-top: 27px;
    font-weight: 700;
    width: 100%;

}
.title{
    width:100%;
    font-size: 1.2rem;
    font-weight:700;
    margin:15px;
}
.difficulty {
    width:100%;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    text-align: center;
}
.levels{
    font-size: 1.1rem;
    font-weight:700;
   text-align: center;
    
}
.continue{
    background: #CC1212;
    width: 100%;
    height: 48px;
    margin-top: 60px;
    color: #FFFFFF;
    border: 0;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    padding-top: 10px; 
}
.navigator{
    position:fixed;
    bottom: 0;
    display:flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    background-color: #2D2D2D;
    width: 100%;
    height: 72px;
    padding: 0px 20px 0px 20px;
   
}
.navigator p{
    display:flex;
    font-weight: 700;
    font-size: 0.8rem;
    color: #FFFFFF;
}
a{
    text-decoration: none;
}


}