/* styles.css */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}
.card-body ul {
    list-style-type: disc;
    padding-left: 20px;
}
.carousel-item {
    height: 100vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}
.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
}
.carousel-caption h1, .carousel-caption p {
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}
footer {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
}
.card {
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-5px);
}