.board {
    display: flex;
    width: 90%;
    gap: 20px;
    flex-wrap: wrap;
    margin: 50px auto;
    justify-content: center;
    font-size: medium;
    text-align: left;
}

.board-item {
    display: flex;
    flex-direction: column;
    background-color: #f4f4f4;
    padding: 25px;
    width: 90%;
    min-width: min-content;
    border-radius: 10px;
}

.row-item {
    text-align: justify;
}

.header {
    font-weight: bolder;
    margin-bottom: 5px;
    text-align: center;
    font-size: 25px;
}

.info {
    display: flex;
    margin-bottom: 10px;
    gap: 20px;
    align-items: center;
    font-weight: 100;
}

.left {
    flex-direction: row;
}

.right {
    flex-direction: row-reverse;
}

.img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 920px) {
    .info{
        flex-direction: column;
        align-items: center;
        padding: 10px;
        text-align: justify;
    }
}