body {
    background-color: #1a1a2e;
    color: #fff;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
}

.dino-image {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3em;
    color: #ff33ff;
    text-shadow:
        0 0 5px #ff33ff,
        0 0 10px #33ffff,
        0 0 15px #ffcc00;
    margin-bottom: 10px;
}

p {
    font-size: 1.5em;
    color: #33ffcc;
    text-shadow:
        0 0 3px #ff33ff,
        0 0 5px #33ffff;
}