/* General body styling */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('/background.JPG') no-repeat center center fixed;
    background-size: cover;
    color: #333; /* Ensures good contrast */
}

/* Main container styling */
.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.75);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    max-width: 90%;
    margin: 20px;
}

/* Heading styling */
h1 {
    font-weight: 700;
    margin: 0 0 10px;
}

/* Paragraph styling */
p {
    font-weight: 400;
    margin: 0 0 10px;
}

/* Button styling */
.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    line-height: 1.5;
}

/* Primary button styling */
.primary {
    background-color: #007BFF;
}

.primary:hover {
    background-color: #0056b3;
}

/* Secondary button styling */
.secondary {
    background-color: #6c757d;
}

.secondary:hover {
    background-color: #5a6268;
}

/* Focus styles for accessibility */
a:focus {
    outline: 2px dashed #0056b3;
    outline-offset: 4px;
}

/* Media Queries for Mobile Devices */
@media (max-width: 600px) {
    body {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .container {
        width: 100%;
        padding: 15px;
    }

    .button {
        width: auto;
        max-width: 90%;
        padding: 15px;
        margin-top: 10px;
    }
}