* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #000000, #550000);
    color: white;
}

h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.2rem;
    color: #cccccc;
    /* slightly darker than white */
    text-align: center;
}