.projects-container {
    position: absolute;
    z-index: 1;
    left: 30px;
    transition: transform .4s;
    height: calc(100% - 30px);
    width: calc(100% - 30px);
    background-color: lightseagreen;
    transform: translateY(100%);
}

.projects-container-triggered {
    transform: translateY(calc(0px + 30px));
}

.projects-top {
    width: 100%;
    height: 30px;
    /* background-color: lightyellow; */
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.projects-top-text {
    /* font-weight: 400; */
    text-transform: uppercase;
    letter-spacing: 20px;
    margin-left: -30px;
}

.projects-top:hover {
    cursor: pointer;
}

.projects-bottom {
    width: 100%;
    height: calc(100% - 30px);
    position: relative;
    overflow: hidden;
}