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

body {
    background-color: #0d1117;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', 'Courier New', Courier, monospace;
    overflow: hidden;
}

.terminal-container {
    text-align: center;
}

.hero-text {
    color: #ffffff;
    font-size: 9rem;
    font-weight: 700;
    letter-spacing: -2px;
}

.cursor {
    display: inline-block;
    color: #ffffff;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .hero-text {
        font-size: 5rem;
    }
}

@media (max-width: 500px) {
    .hero-text {
        font-size: 3rem;
    }
}