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

/* Page styling */
body {
    background-color: #7F9770;
    height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
}

/* Contact placement */
.contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.08em; /* Slightly more refined with caps */
}

/* Email link styling */
.contact a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 8px;
}

/* Ensure link stays white after click */
.contact a:visited,
.contact a:hover,
.contact a:active {
    color: #ffffff;
    text-decoration: none;
}
