body {
    font-family: monospace;
    background-color: #121212; /* Dark background color */
    color: #e0e0e0; /* Light text color */
}

.card_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background-color: #1f1f1f; /* Dark card background color */
    color: #e0e0e0; /* Light text color */
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    width: 300px;
    height: 200px;
    border-color: white;
    border-width: 1px;
}

.card:hover {
    background-color: #2f2f2f; /* Light card background color */
}

.card .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

