body {
    margin: 0;
    background-color: black;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    text-align: center;
}

a {
    color: white;
    text-decoration: none;
    margin: 10px;
    font-size: 1.2rem;
    border: 1px solid white;
    padding: 10px 20px;
    display: inline-block;
    transition: background 0.3s;
}

a:hover {
    background: white;
    color: black;
}

img {
    max-width: 70%;
    height: auto;
    margin: 20px 0;
}

#poem-container {
    text-align: center;
    width: 90%;
    max-width: 800px;
}

#poem {
    line-height: 2;
    letter-spacing: 0.05em;
}

.hidden-word {
    color: black;
    background-color: black;
}
