#loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #1f1f1f;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#rocket {
    width: 100px;
    animation: rocket 4s linear;
}

#spinner {
    width: 50px;
    animation: spin 1s linear infinite;
}

@keyframes rocket {
    0% { transform: translateY(0); }
    100% { transform: translateY(-1000px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#motivational-quote {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 3em;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: zoomIn 3s forwards;
}

@keyframes zoomIn {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}
@media only screen and (max-width: 768px) {
    #motivational-quote {
        font-size: 2.2em;
        top: 30%;
    }
}