/* This targets the entire page */
body {
    background-color: #24c347;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    height: 500vh;
    margin: 0;
}

/* This styles the main heading */
h1 {
    color: #2c3e50;
    font-size: 15rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

/* This styles the paragraph */
p {
    color: #555;
    font-size: 6rem;
}