/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Card Styles */
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.card.fixed-size {
    width: 18rem;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card.fixed-size:hover {
    transform: scale(1.1);
}

.card-img-top {
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.25rem;
    margin: 0 0 10px 0;
}

.card-subtitle,
.card-text {
    font-size: 0.9rem;
    margin: 0 0 10px 0;
}

.card-subtitle {
    color: #666;
}

.card-text {
    color: #333;
    margin-bottom: 15px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: #545b62;
}

/* Navbar Styles */
.navbar-collapse {
    display: none;
}

.navbar-collapse.show {
    display: block;
}

/* Utility Classes */
.wobbly-bg {
    position: relative;
    overflow: hidden;
}

.wobbly-bg::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: inherit;
    z-index: -1;
    filter: blur(10px);
    transform: scale(1.1);
}

.text-shadow,
.text-shadow-black {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-shadow-black {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.text-pink-400,
.text-pink-500 {
    color: #ec4899;
}

.text-pink-400:hover,
.text-pink-500:hover {
    color: #db2777;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
}

.image-container img {
    object-fit: contain;
    width: 100%;
    max-height: 100%;
}

.centered-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.centered-container h2 {
    margin-bottom: 20px;
}

.centered-container ul {
    list-style-type: none;
    padding: 0;
}

.centered-container li {
    margin: 10px 0;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.main-content section {
    margin-bottom: 20px;
}

.done-list {
    list-style-type: none;
    padding: 0;
}

.done-list li {
    margin: 10px 0;
}
