/* Basic Reset */
body,
h1 {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #111;
    /* Dark background for contrast */
}

.container {
    text-align: center;
}

.typography-effect {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 5px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    /* Futuristic font */
    background: linear-gradient(90deg, #f0f, #0ff, #ff0077, #00d2ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 10s ease infinite, colorChange 8s ease infinite;
}

/* Text Shadow Effect */
.typography-effect::before {
    content: 'Coin-Z';
    position: absolute;
    top: 4px;
    left: 4px;
    color: rgba(0, 0, 0, 0.4);
    z-index: -1;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 5px;
    font-family: 'Orbitron', sans-serif;
}

/* Gradient Background Animation */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 0%;
    }

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

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

/* Text Color Changing Animation */
@keyframes colorChange {
    0% {
        color: #f0f;
    }

    25% {
        color: #0ff;
    }

    50% {
        color: #ff0077;
    }

    75% {
        color: #00d2ff;
    }

    100% {
        color: #f0f;
    }
}