body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#flashcard {
    text-align: center;
}

#image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
}

#word {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

#meaning {
    font-size: 16px;
}

.buttons button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 5px;
    cursor: pointer;
    border-radius: 5px;
}

.buttons button:hover {
    background-color: #3e8e41; /* Darker green */
}

.buttons i {
    margin-right: 5px;
}