/* Import a modern font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: #333; /* Dark gray text */
}

.content {
    background: rgba(255, 255, 255, 0.7); /* Light overlay for readability */
    padding: 20px;
    border-radius: 10px;
}

h1 {
    font-size: 3rem;
}

nav a {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.5rem;
}

nav a:hover {
    color: #666;
}

#email {
    font-size: 1.5rem;
}
