/* Base Styles */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for color scheme change */
}

.container {
    text-align: center;
}

.logo {
    max-width: 200px; /* Adjust as needed */
    margin-bottom: 20px;
}

.email-link {
    text-decoration: dotted underline black; /* Dotted black underline */
    text-underline-offset: 3px; /* Adjusts the position of the underline */
    transition: color 0.3s; /* Smooth transition for color change */
}

/* Light Mode Styles */
body {
    background-color: white;
    color: black;
}

.email-link {
    color: inherit;
}

/* Dark Mode Styles */
@media (prefers-color-scheme: dark) {
    body {
        background-color: black;
        color: white;
    }

    .email-link {
        text-decoration: dotted underline white;
        color: inherit;
    }
}
