/* styles.css */

/* Global Styles */
body {
    margin: 0;
    padding: 0;
    background-color: #000000; /* Black background */
    color: #D4AF37; /* Gold color */
    font-family: 'Cinzel', serif; /* Chosen font */
    text-align: center;
    overflow: hidden;
}

/* Container to center content vertically */
.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 5s forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.5s;
}

.fade-in:nth-child(2) {
    animation-delay: 1.5s;
}

.fade-in:nth-child(3) {
    animation-delay: 5s;
}

@keyframes fadeIn {
    to {
        opacity: 0.5;
    }
}

/* Styles for the family name */
h1 {
    font-size: 72px;
    margin: 0;
}

/* Styles for the Zulfiqar sword image */
.sword {
    width: 200px;
    height: auto;
    margin: 20px 0;
}

/* Styles for the family motto */
.motto {
    font-size: 24px;
    margin: 0;
    direction: rtl; /* Right-to-left text direction for Arabic */
}
