/* style.css */
.background {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('aa.jpg') no-repeat center center/cover;
    height: 100vh;
    width: 100%;
}

.text-white {
    z-index: 2;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); /* Add shadow for better text visibility */
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    overflow: hidden; /* Prevent scrolling */
}