:root {
    --primary-color: #ffffff;
    --secondary-color: #dddddd;
    --background-overlay: rgba(0, 0, 0, 0.6);
    --button-bg: rgba(255, 255, 255, 0.1);
    --button-hover-bg: rgba(255, 255, 255, 0.2);
    --button-border: rgba(255, 255, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    background: url('Photos/IMG_7.JPG') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background-overlay);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    padding: 40px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--button-border);
    max-width: 600px;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--secondary-color);
    line-height: 1.6;
}

.email-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.buttons {
    margin-top: 30px;
}

.buttons a {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-color);
    background-color: var(--button-bg);
    border: 1px solid var(--button-border);
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.buttons a:hover {
    background-color: var(--button-hover-bg);
    transform: translateY(-3px);
}
