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

.container {
    width: 90%;
    max-width: 400px;
    padding: 20px;
    border: 3px solid #4FC3F7;
    border-radius: 20px;
    background-color: #2A2A40;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

img {
    width: 250px;
    border-radius: 20px;
}

.button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
}

.button:hover {
    background-color: #45A049;
}