.body {
    background-color: rgb(178, 203, 218);
}

.header {
    background-color: #F8F9FA;
    display: flex;
    justify-content: center;
}

header {
    display: flex;
}

.navbar {
    height: 100px;
    font-weight: 800;
}

.navbar .navbar-collapse {
    display: flex;
    justify-content: center;
}

.navbar .navbar-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar .nav-link {
    text-align: center;
}

.card-img-top {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
}

.card-img-top img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.card-img-top img:not(:first-child) {
    opacity: 0;
}

.no_bullets {
    list-style-type: none;
}

.title {
    font-weight: 800;
}

.Textcontent {
    font-family: Inter;
    font-size: 16px;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 10px; /* Adds a gap between the title and the eye icon */
}

.eye-logo {
    width: 20px;
    height: 20px;
}

.github-logo {
    width: 20px;
    height: 20px;
    margin-left: auto; /* Keeps the GitHub icon aligned to the right */
}

.github-link {
    margin-left: auto;
}

.card-body {
    padding: 20px;
}

.BttnContainer {
    display: flex;
    justify-content: center; /* Centers the content horizontally */
    align-items: center; /* Centers the content vertically */
    text-align: center; /* Ensures the text inside is centered */
    margin: 20px 0; /* Adds spacing above and below the container */
}

.footer {
    background-color: #F8F9FA;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.button {
    width: 180px;
    height: 50px;
    border-radius: 20%;
    margin: 10px;
}

.topcat {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* Media Queries for Responsive Design */
@media (min-width: 768px) {
    .container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .navbar .navbar-nav {
        flex-direction: column;
        gap: 10px;
    }

    .container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}


