html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
} 

body {
    background-color: blanchedalmond;
}

h1 {
    color: darkslategray;
}

h2 {
    color: darkolivegreen;
}

p {
    font-size: 24px;
    font-weight: bold;
    color: darkred;
}