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

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #1A1A1A;
    padding: 20px;
    background: linear-gradient(-45deg, #1e2a47, #0a1b29, #4c6a92, #a7c5e2);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
}

/* Gradient animation */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Container Style */
.container {
    max-width: 400px;
    margin: auto;
    background: #EEF8FF;
    /* Light card-style background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Headshot Style */
.headshot {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Link Button Style */
.link-button {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 18px;
    background: #0073e6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
    /* Added for JS hover glow */
}

/* Hover Effect (CSS fallback) */
.link-button:hover {
    background-color: #005bb5;
}

/* Active click effect */
.link-button:active {
    background-color: #00498c;
}

/* Responsiveness */
@media (max-width: 500px) {
    .container {
        width: 90%;
    }
}