body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: black;
}

#text-container {
    color: white;
    font-size: 2rem;
    text-align: center;
    cursor: pointer;
}

.fade-in {
    animation: fadeIn 2s ease-in;
}

.fade-out {
    animation: fadeOut 1s ease-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
