@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

body {
    background-color: #000000;
    font-family: "Source Code Pro", monospace;
    text-align: center;
    color: #ffffff;
    margin: 0;
}

:root {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#container {
    width: auto;
}

#container p,
h1 {
    background-image: linear-gradient(#00ff22, #121212);
    background-clip: text;
    color: transparent;
}


.text-animation {
    animation: text-offline 0.5s infinite;
}

@keyframes text-offline {
    0% {
        opacity: 0%;
    }

    50% {
        opacity: 100%;
    }

    100% {
        opacity: 0%;
    }
}