.container {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 10vh;
}

h1 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
}

.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.card {
    background-color: #111111;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 320px;
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: "Calistoga", system-ui;
}

.card-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
}