/* common.css */

/* Universal styles for all pages */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-image: url('../images/face.jpeg'); /* Ensure the path is correct */
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container for page content */
.container {
    text-align: center;
    padding: 4rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    max-width: 600px;
    width: 90%;
}

/* Heading styles */
h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Button styles */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 2rem;
}

.cta-buttons a {
    text-decoration: none;
    color: #fff;
    background: #007BFF;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s ease;
}

.cta-buttons a:hover {
    background: #0056b3;
}

/* Footer styles */
.footer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer a {
    color: #007BFF;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
