@font-face {
    font-family: 'Poppins';
    src: url('/src/fonts/Poppins-Regular.woff2') format('woff2'),
         url('/src/fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
}

.bg-gradient {
    background: linear-gradient(135deg, #007BFF 0%, #00C6FF 100%);
}

.album-container {
    height: 300; 
    overflow-y: auto;
    margin-bottom: 10px; 
}

.media-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}

.media-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#success-animation {
    background-color: rgba(34, 197, 94, 0.9);
    transition: all 0.7s ease;
}

.nav-link {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease, left 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}