* {
    background-image: url(assets/stars.jpeg);
}

.welcome {
    color: red;
    animation: scroll 10s linear infinite;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
}

@keyframes scroll {
    from {
        transform: translateX(-10%);
    }
    to {
        transform: translateX(110%);
    }
}

.nicegreybox {
    border-style: double;
    border-color: grey;
    border-width: 5px;
    width: 500px;
    margin: 50px auto;
}

.about {
    background-image: none !important;
    color: red; /* Classic black text */
    font-family: "IBM Plex Mono", monospace;
    text-align: center;
    margin: 0 auto;
}

.the_button {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.the_button button{
    color: yellow;
}