﻿.boardcontent {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.img-avatar {
    width: 80px;
    height: 80px;
    position: absolute;
    border-radius: 50%;
    border: 6px solid #a7222c;
    background-color: #f2f2f2;
    color: #1f1b50;
    left: calc(20% - 80px);
    top: calc(38% - 80px);
    align-content: center;
    text-align: center;
    font-size: 3rem;
}

.boarditem
{
    flex-grow: 1;
    flex-basis: 1px;
    display: flex;
    flex-wrap:wrap;
    gap:1.5rem;
    justify-content: center;
    padding: 15px;
}

.cardinitial {
    flex-basis: 80px;
    flex-shrink: 1;
}

.boardcard {
    width: 480px;
    max-width: 100%;
    min-height: 240px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    background-color: white;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    /*background: linear-gradient(90deg,rgba(31, 27, 80, 1) 0%,rgba(31, 27, 80, 1) 13%, rgba(255, 255, 255, 1) 13%);*/
    background: linear-gradient(111deg, rgba(31, 27, 80, 1) 0%, rgba(31, 27, 80, 1) 16%, rgba(255, 255, 255, 1) 13%);
}

.cardinfo 
{
    flex-basis: 56.66665%;
    flex-grow: 1;
    padding: 0 15px 0 5px;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    .name
    {
        font-size: 1.7rem;
        font-weight: 600;
        margin: 1rem 0 0 0;
        width: 100%;
        border-bottom:solid 3px #a7222c;
    }
    .position {
        font-size: 1.4rem;
        font-weight: 600;
        color: #a7222c;
        width: 100%;
    }
    .content
    {
        padding:3.5rem 0 0 0;
        display:flex;
        flex-wrap:wrap;
        flex-direction:column;
        font-size:1.10rem;
    }
}