/* Resetting some default styles for a clean start */
body, h1, h3 {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #EEE;
    text-align: center;
    line-height: 1.5;
    flex-direction: column;
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #000;
}

h3 {
    text-shadow: 1px 1px 3px #000;
}
