@font-face {
    font-family: Skyfont;
    src: url("Skyfont-NonCommercial.otf") format("opentype");
}
.flight-box {
    font-family: Skyfont;
    font-size: 30px;
    background-color: #2b2b2b;
    color: white;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.board {
    display: grid;
    grid-template-columns: repeat(8, 1fr);  
    gap: 10px;
    width: 100%;  
}

.board-header, .board-row {
    display: contents;  
}

.board div, .board-row div {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ccc;  
}

@media (max-width: 768px) {
    .board {
        grid-template-columns: repeat(8, minmax(150px, 1fr)); 
 
        width: 1200px;  
    }

   .flight-box {
    overflow-x: auto;
}
}

.board-row {
    border-bottom: 1px solid #444;
}
.yellow {
    color: #ffcc00;
}