/* RESET */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: monospace;
}

/* HEADER / HERO */
header {
    height: 100vh;
    background-image: url('car.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* TITLE */
h1 {
    font-size: 5.4em;
    color: #000; /* fixed invalid color */
    margin-bottom: 20px;
    text-align: center;

    /* OUTLINE + GLOW */
    text-shadow:
        -2px -2px 0 #fff,
         2px -2px 0 #fff,
        -2px  2px 0 #fff,
         2px  2px 0 #fff,
         0  0 15px rgba(255, 255, 255, 0.8);
}

/* PARAGRAPH */
p {
    font-size: 2.4em;
    color: #000;
    text-align: center;          /* 👈 important */
    line-height: 1.3;            /* improves readability when wrapping */

    text-shadow:
        -1px -1px 0 #fff,
         1px -1px 0 #fff,
        -1px  1px 0 #fff,
         1px  1px 0 #fff,
         0  0 10px rgba(255, 255, 255, 0.6);
}

/* RED FIRST LETTERS (STRONGER GLOW) */
.first {
    color: red;
    font-weight: bold;

    text-shadow:
        -1px -1px 0 #fff,
         1px -1px 0 #fff,
        -1px  1px 0 #fff,
         1px  1px 0 #fff,
         0  0 20px rgba(255, 0, 0, 0.9),
         0  0 40px rgba(255, 0, 0, 0.6);
}