﻿body
{
    background: #000;
    color: white;
}

.nav-link {
    color: white;
}

.myheader 
{
    margin-bottom: 5%;
}
.fas.fa-heart:hover {
    color: #f44336 !important;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confetti {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.carousel-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.thumbnail-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.thumbnail-row img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
 }

.thumbnail-row img:hover {
    border: 2px solid #007bff;
 }

.img-tab {
    max-height: 1500px;
    object-fit: cover;
}

