/* Page background */
body {
    margin: 0;
    height: 100vh;
    background: url('../images/arcback2_background_web.svg') no-repeat center center fixed;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
	
	animation: bgPan 30s ease-in-out infinite alternate;  /* <— NEW */
}

/* Logo styling */
.logo {
    width: 200px;
    cursor: pointer;

    /* Page-load animation */
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInZoom 1.2s ease-out forwards;
}

/* Keyframes */
@keyframes fadeInZoom {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bgPan {
    0% { background-position: center center; }
    100% { background-position: 100% 100%; }
}
