﻿body {
    background-color: #f8f9fa; /* Light grayish color */
    color: #212529; /* Dark text for contrast */
    font-family: 'Arial', sans-serif; /* Clean font */
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures consistent padding and margins */
   
}
.parallax {
    background-image: url('background.png');
    background-attachment: fixed; /* Enables the parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.semi-transparent-container {
    background-color: rgba(255, 255, 255, 0.8); /* White with transparency */
    padding: 2rem;
    border-radius: 0.5rem; /* Optional: Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center; /* Center the text */
}