
*{
    font-family: "Comic Sans MS", "Helvetica Neue", Helvetica, Arial;
}


body {
    background: #191E29;
    padding-bottom: 0;
}

.mi {
    font-family: "Comic Sans MS", "Helvetica Neue", Helvetica, Arial;
    font-size: 60px;
    color: #00FF7F;
    text-align: center;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background-color: transparent;
    transition: background-color 0.3s ease, border-bottom 0.3s ease;
    z-index: 1000;
}

.navbar:hover {
    background-color: #191E29;
    border-bottom: 1px solid #00FF7F;
}

.navbar-nav {
    transition: background-color 0.3s ease;
}

@media (max-width: 700px) {
    .navbar-nav {
        background-color: #191E29; 
    }
}


#dacc {
    width: 150px;
    height: 50px;
    padding: 5px;
}

#nav-link {
    color: #00FF7F;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
    transition: color 0.3s ease;
}

#nav-link:hover {
    color: #ffffff;
}

#menu {
    width: 45px;
    height: 45px;
    padding: 5px;
}

button.navbar-toggler {
    outline: none;
    box-shadow: none;
    border: none;
}

button.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
}

.gallery img {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, filter 0.3s ease-in-out, border 0.3s ease;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); /* Similar shadow effect */
    width: 100%;
    height: auto;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    object-fit: cover;
}

.gallery img:hover {
    transform: scale(1.05); /* Slightly increase scale, like card-foda */
    box-shadow: 0 0 15px #00ff7f, 0 0 25px #00FF7F, 0 0 35px #00ff7f; /* Similar glowing effect */
    border: 2px solid #00FF7F; /* Green border on hover */
}

.gallery img:focus, .gallery img:active {
    transform: scale(1.15) rotate(5deg); 
    box-shadow: 0 12px 24px rgba(0, 255, 255, 0.6); 
    filter: brightness(1.3) contrast(1.5); 
    animation: popIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}




.footer-container{
    padding-top: 60px;
}

.text-center {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #191E29;
    border-top: 1px solid #00FF7F;
    color: #F2BF00;
    text-align: center;
    padding: 10px 0;
    font-family: "Comic Sans MS", "Helvetica Neue", Helvetica, Arial;
    font-size: 16px;
}

.text-body {
    color: #fff !important;
    font-family: "Comic Sans MS", "Helvetica Neue", Helvetica, Arial;
    font-size: 16px;
}
