﻿.content {
    max-width: 1200px;
    margin-inline: auto;
    padding: .5rem 1.5rem 4rem 1.5rem;
    position: relative;
    overflow-y: clip;
}
p {
    font-size: 1.1rem;
}

h2 {
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
}

#card-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    gap: 2rem;
}
.card{
    padding: 1rem;
    max-width: 30rem;
    height: 100%;
    min-height: 10rem;
    border: 3px solid var(--blue);
    border-radius: 20px;
}
.card h3 {
    color: var(--green);
    font-weight: 600;
    font-size: 1.65rem
}
#card-display img {
    margin-top: 2rem;
    width: 90%;
    max-width: 100%
}
#client-roster {
    max-width: 23rem
}
#client-roster h3{
    color: var(--orange);
    font-weight: 600;
}

/*Pie Chart*/
#myPieChart {
    width: 600px;
    max-width:100%;
    min-width: 350px;
    aspect-ratio: 16 / 9;
}

@media(max-width: 950px){
    #card-display {
        display: grid;
        grid-template-columns: 1fr;
    }
    #Chart{
        overflow-x: clip !important;
    }
}
@media(max-width: 375px) {
    #Chart {
        width: 0;
        height: 0;
        display: none !important;
/*        visibility: hidden;*/
    }
    #myPieChart {
        width: 0;
        height: 0;
        display: none;
    }
}

