body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    position: relative;
    max-width: 90%;
    width: 400px;
}

img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.buttons {
    margin-top: 10px;
}

button {
    background-color: #ff9800;
    border: none;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

button:hover {
    background-color: #e68900;
}