#Projects_container {
    position: absolute;
    width: 80%;
    left: 20%;
    top: 10%;
    columns: 2;
}

.text_box{
    padding: 1rem;
    color: var(--textcol);
    position: absolute;
    height: 70%;
    width: 100%;
    bottom: 0px;
    background-color: var(--backcolnontrans);
    border: 3px solid var(--frontcol);
    cursor: pointer;
    overflow: clip;
}

.text_box h1{
    font-size: 125%;
}

.text_box p{
    font-size: x-large;
    text-align: center;
}

.languages {
    margin-left: -1rem;
    position: absolute;
    white-space: nowrap;
    overflow-x: auto;
    bottom: 0px;
    height: 35px;
    width: fit-content;
    border: 3px solid var(--frontcol);
    border-left-style: none;
    border-bottom-style: none;
}

.languages div{
    width: fit-content;
    height: 100%;
    background-color: var(--backcol_b);
    border-left: 3px solid var(--frontcol);
    padding: 0px 10px 0px 10px;
    display: inline-block;
}

.languages div:first-child{
    border: none;
    width: fit-content;
}

.project_box {
    display: block;
    position: relative;
    width: 70%;
    height: 30vh;
    margin-top: 100px;
    color: #c7c7c7;
}

.project_box:hover img{
    transform: translate(0,-50%);
}

.project_box img {
    position: relative;
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin-left: 10%;
    top:0px;
    background-color: var(--backcol);
    border: none;
    border-radius: 0.2cm;
    transition: transform .2s;
}
