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

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: repeat(10, 1fr);
    pointer-events: none;
}

.block {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.1);
    font-size: 14px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.terminal {
    position: relative;
    z-index: 10;
    background-color: rgba(26, 26, 26, 0.9);
    border: 2px solid #fff;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px #fff;
    max-width: 90%;
}

@media (max-width: 768px) {
    .background {
        grid-template-columns: repeat(10, 1fr); /* Reduce columns */
        grid-template-rows: repeat(5, 1fr); /* Reduce rows */
    }

    .block {
        font-size: 18px; /* Increase font size for better readability */
    }

    .terminal {
        width: 90%;
        padding: 15px;
        font-size: 14px;
    }
}
