/* css/home.css */
body {
    font-family: Arial, sans-serif;
    background-color: #2a85e0;
    margin: 0;
    padding: 0;
}

.navbar {
    box-shadow: 0 4px 6px rgba(86, 221, 138, 0.1);
    padding-bottom: 5px;
    padding-top: 5px;
    position: relative;
    position: fixed;
    background-color: rgb(21, 196, 187);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(68, 15, 190, 0.5);
    margin-right: 10px;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.card {
    transition: transform 0.5s ease;
}

.card:hover {
    transform: scale(2.05);
}

.item:hover{
    background-color: black;
}
footer {
    background-color: #343a40;
    color: white;
}
