
body {
    text-align: center;
}

h1 {
    top: 10%;
    color: white;
    line-height: 1.5;
    letter-spacing: normal;
    z-index: 10; /* Ensure typewriter text is above the cards */
}

/* Typewriter effect */

.typewriter {
    font-family: inherit;
    white-space: pre-wrap;
    line-height: 1.2;
    letter-spacing: normal;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: black;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to {
        background-color: transparent;
    }
    50% {
        background-color: black;
    }
}

.cardRow {
    display: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    z-index: 5,
}

.card {
    background: #101010;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    width: 300px;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.card:hover {
    background: black;
    color: white;
    transform: scale(1.05);
    border: 2px solid #1DB954;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: 0.2s;
}

