@media screen and (max-width: 450px) {
    body {
        background-color: rgb(223, 220, 215);
    }
    h1 {
        margin: 30px;
        text-align: center;  
        user-select: none;
        font-size: 25px;
        font-family: monospace;
    }
    p {
        margin: 30px;
        text-align: center;  
        user-select: none;
        font-size: 20px;
        font-family: monospace;
    }
    .hitBlow {
        text-decoration:none;
    }
}

@media screen and (min-width: 451px) {
    body {
        background-color: rgb(223, 220, 215);
    }
    h1 {
        margin: 120px;
        text-align: center;  
        user-select: none;
        font-size: 60px;
        font-family: monospace;
    }
    p {
        margin: 60px;
        text-align: center;  
        user-select: none;
        font-size: 40px;
        font-family: monospace;
    }
    .hitBlow {
        text-decoration:none;
    }
}