body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    background-color: #121212;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content img {
    max-width: 90%;
    height: auto;
    border-radius: 8px;
}

.menu {
    position: absolute;
    top: 20px;
    left: 20px;
}
.menu a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    font-size: 1.2rem;
}
.menu a:hover {
    text-decoration: underline;
}
