

.box{
    border: solid;
    vertical-align: top;
    background-color: rgb(199, 199, 199);
}


.left{float: left;}
.right{float: right;}

.half_box{
    box-sizing: border-box;
    display: inline-block;
    box-sizing:border-box;
    margin: 10px;
   

    width: calc(50% - 20px);
    min-width: 400px;
    border-radius: 8px;
    padding: 12px;
    border: none;
    
    background-color: rgb(67, 67, 67);
    
}

.half_box h1{
    font-size: 60px;
    font-family: DM_Serif;
    color: rgb(227, 227, 227);
}

.box p{
    font-size: small;
}
.box h1{
    font-family: Montserrat;
    font-weight: bold;
    font-size: 35px;
}

.collapsible{
    font-size: 30px;
    font-family: DM_Serif;
    color: rgb(227, 227, 227);

    background-color: rgb(52, 62, 71);
    width: 100%;
    border-radius: 5px;
    height: 60px;
    margin-top: 5px;
}

.project_box{
    background-color: rgb(113, 123, 141);
    box-sizing: border-box;
    padding-left: 20px;
    /* padding: 20px; */
    
    
}

@keyframes open_anim {
    0% {height: 5%;}
    100% {height: 80%;}
}