body{
    background-color: blue;
    font-size: 1rem;
    color: white
}
h1{
    background-color: lightblue;
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
}
p{
    font-size: 115%;
}
@media screen and (max-width: 1000px){
    h1{
        background-color: red;
    }
    body{
        background-color: black;
    }
}
