body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: #1a1a2e;
    font-family: Arial, sans-serif;
}

button {
    background-color: #e94560;
    color: white;
    border: none;
    padding: 12px 24px;
    margin: 8px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #c73652;
}

#dogContainer {
    margin-top: 24px;
    width: auto;
    height: auto;
}

#dogContainer img {
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}