body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #f06, #4a90e2);
    font-family: 'Arial', sans-serif;
    color: #fff;
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.animation {
    position: relative;
}

.main-text {
    font-size: 48px;
    font-weight: bold;
    position: relative;
}

.reverse-text {
    font-size: 24px;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 1s ease;
    position: relative;
}

#typewriter-text::after {
    content: '';
    border-right: .1em solid #fff;
    animation: caret 1s steps(1) infinite;
}

@keyframes caret {
    50% {
        border-color: transparent;
    }
}

.final-text {
    font-size: 32px;
    margin-top: 20px;
    opacity: 0;
    transition: opacity 1s ease;
    font-style: italic;
    text-align: center;
}

footer {
    position: fixed;
    bottom: 10px;
    text-align: center;
    width: 100%;
}

footer p {
    margin: 0;
	margin-bottom: 40px;

}

footer a {
    color: #fff;
    text-decoration: none;
	font-weight: bold;
}

