body {
    font-family: 'Press Start 2P', cursive;
    background: linear-gradient(to bottom, #6ec1e4, #c3f0ff);
    text-align: center;
    padding: 20px;
    margin: 0;
    height: 100vh;
}

/* Pixel Art Fonte */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

.title {
    background: #222;
    color: #fff;
    padding: 10px 20px;
    border: 4px solid #fff;
    display: inline-block;
    box-shadow: 4px 4px #ff006e;
    margin-bottom: 20px;
}

.board {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.column {
    background: #f0f0f0;
    border: 4px solid #000;
    padding: 10px;
    width: 220px;
    min-height: 300px;
    box-shadow: 4px 4px #222;
}

.column h2 {
    font-size: 12px;
    margin-bottom: 10px;
    background: #ffbe0b;
    padding: 5px;
    border: 2px solid #000;
}

.task {
    background: #fff;
    border: 2px solid #000;
    padding: 8px;
    margin-bottom: 8px;
    cursor: grab;
    box-shadow: 3px 3px #000;
}

.task:active {
    cursor: grabbing;
}

@media (max-width: 768px) {
    .board {
        flex-direction: column;
        align-items: center;
    }
    
    .column {
        width: 90%;
        min-height: 200px;
    }

    h1 {
        font-size: 14px;
        padding: 8px 10px;
    }
}