@font-face {
    font-family: "K2D-Medium";
    src: url("../fonts/K2D-Medium.ttf");
}

.dashboard {
    display: flex;
    justify-content: space-around;
    margin: 20px;  
    
}



.dashboard .h1 {
    font-family: "K2D-Medium";
    font-size: 200px;
    font-weight: bold;
}

.dashboard .blue-box, .pink-box, .green-box {
    /* width: 280px; */
    padding: 10px;
    text-align: right;
    font-size: 100px;
    margin: 5px;    
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dashboard .blue-box {
    background-color: #8BD2EC; 

   
}

.dashboard .pink-box {
    background-color: #FFBBDA;
   
    
}

.dashboard .green-box {
    background-color: #92CEA8;
}


.dashboard .chart {   
    padding: 20px;
    text-align: center;
    margin: 20px;   
    
}