/* Reset default styles */
html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
}

/* Background image for body */
body {
    background-image: url('../images/background.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Grey tint overlay */
.grey-tint {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.5);
    z-index: 1;
    pointer-events: none;
}

/* Content area */
.content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header styling */
.header {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
}

/* Body content area */
.body-area {
    background-color: rgba(128, 128, 128, 0.7);
    padding: 40px;
    margin: 20px;
    border-radius: 8px;
    flex: 1;
    overflow-y: auto;
}

.body-area p {
    color: black;
    font-size: 1.1em;
    line-height: 1.6;
}
