/* 
file: css/styles.css
last updated: 07-21-2025
copyright: Christian Brasch
*/

body {
    font-family: 'Inter', sans-serif;
}

.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../media/background.png');
    background-size: cover;
    background-position: center;
    filter: blur(12px) brightness(0.8);
    transform: scale(1.1);
    z-index: -1;
}

.page {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.page-hidden {
    opacity: 0;
    transform: translateY(20px);
    position: absolute;
    pointer-events: none;
}

.nav-button.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* glowing verified checkmark */
.verified-checkmark {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
}
