/* General Page Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
}

/* Full Page Background Image */
body {
    background-image: url('../image.png'); /* Update with your image path */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #ffffff;
}

/* Container for Centering Text */
.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Overlay for Text */
.overlay {
    text-align: center;
    position: absolute;
    z-index: 2;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 2em;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
}

/* Heading Style */
h1 {
    font-size: 3rem;
    margin-bottom: 0.5em;
}

/* Paragraph Styling */
p {
    font-size: 1.2rem;
    margin-top: 1.5em;
    color: #ffffff;
    text-align: center;
}

/* Button Container */
.button-container {
    display: flex;
    justify-content: center;
    gap: 1em;
}

/* Personal Page Button Styling */
.btn-personal-page {
    text-decoration: none;
    color: #ffffff;
    background: #28a745;
    padding: 1em 2em;
    font-size: 1.1rem;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-personal-page:hover {
    background: #218838;
}
