* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling with background image */
body {
    font-family: Arial, sans-serif;
    background: url('/images/background.jpg') no-repeat center center fixed;
    background-size: cover; /* Ensures background covers entire screen */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Adding padding for small screen devices */
}

/* Container for centering content */
section {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px; /* Max width for larger screens */
}

/* Heading styling */
h1 {
    font-size: 2.5rem; /* Font size adjusts based on screen */
    color: #333;
    margin-bottom: 20px;
}

/* Paragraph styling */
p {
    font-size: 1.2rem;
    color: #666;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 0.9rem;
    }
}