/* Reset styles */
body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Set background and center content */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #007BFF;
    color: white;
    font-family: Inter, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    /* Smooth font edges on WebKit browsers */
    -moz-osx-font-smoothing: grayscale;
    /* Smooth font edges on macOS */
    text-rendering: optimizeLegibility;
    /* Enhance text readability */
}


.center-content {
    text-align: center;
    padding: 2rem;
    word-break: break-all;
}

.email-link {
    font-size: 3rem;
    /* Adjust font size for responsiveness */
    color: white;
    /* White text */
    text-decoration: none;
    /* Remove underline */
    transition: opacity 0.2s ease;
    /* Smooth transition */
}

.email-link:hover {
    opacity: 0.5;
    /* Change to 50% opacity on hover */
}

.page-description{
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .email-link {
        font-size: 2rem;
        /* Smaller text on tablets and down */
    }

    .center-content {
        max-width: 80vw;
    }
}

@media (max-width: 412px) {
    .email-link {
        font-size: 1.25rem;
        /* Smaller text on mobiles */
    }

    .center-content {
        max-width: 80vw;
    }
}


