.head{
    margin-bottom: 0;
    position: absolute;
    width: 100%;
    background-color: rgba(43, 59, 78, 0.22);
    box-shadow: none;
}
.content{
    margin: 0;
    max-width: initial;
}
.bighead_wrapper_bg{
    width: 100%;
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
}
.head_flex{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}
.zeroDescription{
    max-width: 600px;
    margin: 2%;
    background-color: rgba(39, 39, 49, 0.5803);
}
.boards_all{
    max-width: 1024px;
    margin: 15px auto;
    display: flex;
}
.boards_all > .column{
    width: 100%;
}
.quick_board_links{
    display: flex;
    height: 50px;
    margin: 0 calc(100vh - 1024px / 2);
}
.quick_board_links > div{
    width: 100%;
    height: 100%;
    font-size: 2em;
    text-align: center;
    transition: .4s;
    line-height: 50px;
}
.quick_board_links > div:hover{
    background-color: #4545549e;
}
.quick_board_links > div a{
    color: white;
}
.board-category{
    background-color: #53536169;
    margin-right: 100px;
    font-weight: bold;
    padding: 2px 4px;
    margin-top: 14px;
    border-radius: 2px;
}
.boards_all p{
    margin-left: 2px;
}
.all_boards_go{
    margin-top: 20px;
}

@media screen and (max-width: 35em) {
    .boards_all{
        flex-wrap: wrap;
    }
    .board-category{
        text-align: center;
        margin-right: 0;
    }
    .quick_board_links{
        margin: 0;
    }
    .quick_board_links > div{
        font-size: 1.5em;
    }
    .boards_all p{
        display: inline-block;
        margin: 5px;
    }
}