/* Custom styles for Churchie Chess Tournament */
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}
/* Chess piece animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.chess-piece {
    animation: float 3s ease-in-out infinite;
}

/* New color variables */
:root {
    --royal-blue: #00539B;
    --gold: #D4AF37;
    --light-gray: #F5F5F5;
}
/* Responsive adjustments */
@media (max-width: 640px) {
    .chess-pattern {
        background-size: 50px 50px;
    }
}