/* mon espace */
    .container_box{
        width: 100%;
        height: calc(100dvh - 200px);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 32px;
    }
    
    .content_box{
        width: 280px; height: auto;
        border-radius: 16px;
        background: var(--black-bg);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 16px;
    }
    
    .content_box:first-child{
        border: 4px solid var(--red);
    }
    
    .content_box:last-child{
        border: 4px solid var(--blue);
    }
    
    .content_box i{
        font-size: 120px;
        color: var(--white);
    }
    
    .content_box:first-child span{
        color: var(--red);
    }
    
    .content_box:last-child span{
        color: var(--blue);
    }
    
    .content_box span{
        text-align: center;
    }
    
    .content_box p{
        text-align: center;
        color: var(--white);
    }
    
    .content_box:hover{
        scale: 1.05;
    }
/* mon espace */