.col_main {
    background-color: rgb(255, 255, 255);
    margin-left: 96px;
    height: 100vh;
    width: 100%;
    overflow: auto;
}

.category {
    background-color: white;
    width: 90%;
    height: fit-content;
    min-height: 100px;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.categoty_h1 {
    width: 100%;
}

.project_box {
    background-color: rgb(255, 255, 255);
    width: 33.33%;
    height: fit-content;
    aspect-ratio: 1;
    margin: 0 0 40px 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    background-color: rgb(255, 255, 255);
    margin: 10px;
    width: 80%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.project_box_img_holder {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.project_box_img {
    width: 100%;
    margin: 0;
    aspect-ratio: 1;
    transition: .5s ease-in-out;
}

.project_box_img:hover {
    transform: scale(1.05);
    transition: .5s ease-in-out;
}

.project_box_title {
    font-size: 32px;
    margin: 15px 0px 5px 0px;
}

.project_box_a {
    text-decoration: none;
    color: black;
}

.project_box_p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    color: rgb(60, 60, 60);
}

.kouttos2 {
    display: none;
}



@media only screen and (max-width: 1024px){
    .col_main {
        background-color: rgb(255, 255, 255);
        margin: 0;
        height: calc(100vh - 90px);
        width: 100%;
        overflow: auto;
    }
    
    .category {
        background-color: white;
        width: 90%;
        height: fit-content;
        min-height: 100px;
        margin: 10px auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
    }
    
    .categoty_h1 {
        width: 100%;
    }

    .project_box {
        background-color: rgb(255, 255, 255);
        width: 50%;
        height: fit-content;
        aspect-ratio: 1;
        margin: 0 0 40px 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .kouttos2 {
        display: block;
        height: 90px;
        width: 100%;
    }
}

@media only screen and (max-width: 480px){
    .col_main {
        margin: 0;
        height: calc(100vh - 90px);
    }
    
    .category {
        width: 95%;
        height: fit-content;
        margin: 10px auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
    }
    
    .categoty_h1 {
        width: 100%;
        font-size: 28px;
    }

    .project_box {
        width: 100%;
        margin: 0 0 40px 0;
    }

    .content {
        margin: 10px;
        width: 90%;
    }

    .project_box_title {
        font-size: 24;
        margin: 5px 0;
    }

    .project_box_p {
        font-size: 16px;
    }

    .kouttos2 {
        display: block;
        height: 80px;
        width: 100%;
    }
}