h1,
h2 {
    font-family: 'Chakra Petch', sans-serif;
}

p {
    font-family: 'Courier New', sans-serif;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    padding: 1rem;
}

h1 {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 100px;
}

h2 {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 35px;
}

p {
    max-width: 600px;
    text-align: left;
    line-height: 1.33;
    margin: 1rem 0;
}

/* Tablet devices */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 28px;
    }

    p {
        max-width: 90%;
        font-size: 16px;
    }
}

/* Mobile devices */
@media screen and (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    p {
        max-width: 95%;
        font-size: 15px;
    }

    body {
        padding: 0.5rem;
    }
}