body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    position: relative; /* Needed for absolute positioning of pseudo-element */
    overflow: hidden; /* Prevent scrolling */
}

body::before {
    content: "";
    position: fixed; /* Fixed position for the background */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/public/Screenshot_202.png'); /* Background image */
    background-size: cover; /* Cover the entire screen */
    filter: blur(6px); /* Apply blur effect */
    z-index: -1; /* Place behind other content */
}

header {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(58, 185, 235, 0.473); /* Semi-transparent black background */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7); /* Shadow effect */
}

.header-content {
    max-width: 800px; /* Limit content width */
    margin: 0 auto; /* Center the content */
}

h1 {
    margin: 0;
    font-size: 2.85em;
    text-transform: uppercase; /* Uppercase for emphasis */
    letter-spacing: 3px; /* Spacing between letters */
}

h2 {
    margin-top: 40px;
    font-size: 2.5em;
    text-align: center;
    color: #000000; /* Blue color for heading */
}

.application-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the list */
    gap: 30px; /* Space between items */
}

.application-list li {
    width: 300px; /* Fixed width for all buttons */
    background-color: #007bff; /* Blue background */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden; /* Ensure rounded corners are applied */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Shadow effect */
    transition: transform 0.2s; /* Smooth transition for scaling */
    text-align: center; /* Center text */
}

.application-list a {
    display: block;
    padding: 15px; /* Padding inside the links */
    text-decoration: none; /* Remove underline */
    color: #000000; /* White text */
    font-size: 20px; /* Font size */
}

.application-list a:hover {
    background-color: #004691; /* Darker blue on hover */
    transform: translateY(-5px); /* Lift effect on hover */
}

.application-list a:active {
    transform: translateY(0); /* Reset on click */
}

footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(46, 59, 235, 0.185); /* Semi-transparent footer */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.7); /* Shadow effect */
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 300px;
}
