/* Reset default margins */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6; /* Soft light grey */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    letter-spacing: -1px;
    margin-bottom: 10px;
    color: #2c3e50; /* Deep navy/charcoal */
}

.email {
    font-size: 1.2rem;
    color: #3498db; /* Professional blue */
    text-decoration: none;
    transition: color 0.3s ease;
}

.email:hover {
    color: #2980b9;
    text-decoration: underline;
}
