@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@media (max-width: 560px) {
    .carousel-caption h1 {
      font-size: 200%;
    }
  }

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    background-color: rgba(223, 238, 193, 0.249);
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.accordion-body {
    text-align: left;
}

.accordion-button:hover {
    background-color: rgb(56, 122, 233);
    color: #fff;
}

.c-a:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(56, 122, 233);
}

.p-left {
    text-align: left;
}

.c-item {
    height: 400px;
}

.c-img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5)
}

.c-text {
    color: #fff;
}

.btn {
    background-color: rgb(56, 122, 233);
}

.card {
    transition: all 0.3s;
}

.card:hover {
    transform: scale(1.03);
}

.c-card-img {
    height: 180px;
    object-fit: contain;
}

/* Footer styles */
footer {
    margin-top: auto;
    background-color: rgb(223, 238, 193);
    padding: 20px;
}

footer p {
    font-size: 14px;
}