@font-face {
    font-family: 'UrbanJungle';
    src: url('/assets/fonts/UrbanJungle.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif;
    background-color: #000;
    background-image: url('/assets/bg/bg.jpeg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: url('/assets/icons/download.svg') 0 0, auto;
}

.glass-container {
    width: 60%;
    padding: 50px;
    height: 30%;
    border: 5px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.welcome-text {
    font-size: 6.5rem;
    color: #000000;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
    font-family: 'UrbanJungle', sans-serif;
}



@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}
