@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

body {
    background: linear-gradient(to bottom, #00003c, #000080);
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
}

.logo {
    max-width: 50%;
    height: auto;
    animation: fadeIn 2s, pulse 4s infinite alternate;
}

.tagline {
    font-size: 1.3em;
    letter-spacing: 1.5px;
    margin-top: 40px;
    animation: fadeIn 2s 0.4s backwards;
}

.email {
    font-size: 0.9em;
    margin-top: 30px;
    animation: fadeIn 2s 0.8s backwards;
}

.email a {
    color: #a0a0c0;
    text-decoration: none;
    transition: color 0.3s;
}

.email a:hover {
    color: #ffffff;
}

#rotating-text {
    transition: opacity 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    from {
        filter: drop-shadow(0 0 5px rgba(173, 216, 230, 0.4));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(173, 216, 230, 0.8));
    }
}


@media (prefers-reduced-motion) {
    #rotating-text {
        transition: none;
    }
}