* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Consolas', monospace;
    background-color: black;
    color: white;
    overflow: hidden;
}

.text-marquee {
    position: absolute;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    font-size: 2em;
    white-space: nowrap;
    overflow: hidden;
}

.text-marquee span {
    display: inline-block;
    animation: marquee 10s linear infinite;
}

.top {
    top: 0;
}

.bottom {
    bottom: 0;
}

.content {
    text-align: center;
    z-index: 1;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
    color: white;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
