* {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    box-sizing: border-box;
}

.container {
    background-color: #121212;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    min-height: 100vh;
}

.heading {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    color: #fff;
    text-align: center;
}

.title {
    font-size: 3em;
    font-weight: bold;
}

.subtitle-container {
    width: 100%;
    max-width: 400px;
    margin: 30px auto 0 auto;
    overflow: hidden;
    padding: 10px 0;
}

.subtitle-track {
    display: flex;
    width: max-content;
    animation: passar 10s linear infinite;
}

.subtitle {
    display: flex;
    /* Garante que os spans fiquem em linha */
    flex-shrink: 0;
    color: lightgray;
    font-size: 1em;
    font-weight: bold;
    white-space: nowrap;
}

/* Espaçamento entre cada notícia dentro do bloco */
.subtitle span {
    padding-right: 80px;
}

@keyframes passar {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.launch-time {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    text-align: center;

}

.launch-time div {
    flex-basis: 100px;
}

.launch-time div p {
    font-size: 60px;
}

.github-button {
    margin-top: 130px;
}

a img {
    width: 130px;
    margin-top: 10px;
    background-color: white;
    border-radius: 40px;
    transition: transform 0.2s;
}

a img:hover {
    transform: scale(1.2);
}
