@media only screen and (max-width: 48em) { }
@media(min-width: 1366px){
// code here
}
@media(min-width:1200px) and (max-width:1365px){
// code here
}
@media(min-width:1080px) and (max-width:1920px){
// code here
}
@media(min-width:992px) and (max-width:1199px){
// code here
}
@media(min-width:768px) and (max-width:992px){
// code here
} @media (min-width:480px) and (max-width:768px){
// code here
} @media only screen and (min-width:375px) and (max-width:667px){
// code here
}
@media (min-width:480px) and (max-width:768px){
.wrapper #about-me .about-content h1 {
font-size: 4rem;
}
}