h1.project-tittle{
    font-size: 10vmin;
}

h2.project-sub-tittle{
    text-align: center;
    font-size: 2vmin;
}

/* Project Unit */
.project-unit-container{
    width: 30%;
    padding: 0px 0px 20px 0px;
}

.project-unit-subcontainer{
    padding: 10px 0px;
    width: initial;
    height: 22vw;
    max-height: 400px;
    border-radius: 20px;
    background-color: #2c4d90;
    display: flex;
    flex-direction: column;
}

.project-unit-button{
    text-decoration-line: underline;
    color: #0c1120;
    margin-top: auto;
}

.project-unit-button:hover{
    transition: 0.3s;
    color: #3282e0;
}

.project-unit-image{
    border-radius: 30px;
    width: 13vmin;
}

.project-unit-name{
    color: #dfe0e0;
    font-weight: bold;
    font-size: 2vmin;
}

.project-unit-desc{
    color: #0c1120;
    width: 60%;
    font-size: 1.5vmin;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Page Buttons */
.page-buttons-container{
    width: 10vmin;
    padding: 20px 0px;
}

.page-buttons-subcontainer{
    width: 3.5vmin;
    height: 3.5vmin;
}

.page-button.selected{
    text-decoration-line: underline;

}

.page-button{
    height: inherit;
    width: inherit;
    text-decoration-line: none;
    border: 2px solid #0c1120;
    border-radius: 25px;
    font-size: 2vmin;
    color: #0c1120;
    transition: 0.3s;
    cursor: pointer;
}

.page-button:hover{
    color: #3282e0;
}