@font-face {
    font-family: 'Adieu';
    src: url('../../fonts/Adieu-Regular.ttf') format('truetype');
}  

@keyframes zoom {
    from {
        opacity: 0;
        transform: scale(1);
    }
    to {
        opacity: 1;
        transform: scale(1.5);
    }
}


.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0D0D0D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
    z-index: 99;
}

.loader h1 {
    font-family: 'Adieu';
    font-size: 2rem;
    color: #ffffff;
    animation: zoom 2s cubic-bezier(.46, .43, .1, .99) infinite alternate;
}