/* styles.css */
body {
    margin: 0;
    padding: 0;
    height:100%;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

.hero {
    position: relative;
    
    height: 70vh; /* Full viewport height */
    background-image: url('image/hd/2.jpg'); /* Initial background image */
    background-size: cover;
    background-position: center;
    animation: changeImage 60s ease-in-out infinite; /* Smooth transition for background image */
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color:aliceblue;
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3em;
    margin: 0;
}

.hero-content p {
    font-size: 1.5em;
}

@keyframes changeImage {
    
    50% { background-image: url('image/hd/2.jpg'); }
    20% { background-image: url('image/hd/3.jpg'); }
    30% { background-image: url('image/hd/4.jpg'); }
    40% { background-image: url('image/hd/5.jpg'); }
    50% { background-image: url('image/hd/6.jpg'); }
}
