main section#side-project .card {
    position: relative;
    overflow: hidden;
    height: 380px;
    width: 440px;
    box-shadow: 0px 2px 21px rgba(0, 0, 0, 0.25);
    border-radius: 26px 0 26px 0;
    transition: all 1s ease-in-out;
}
main section#side-project h4 {
    color: #fff;
}
main section#side-project .title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 1s ease-in-out;
}
main section#side-project .description {
    height: 0;
    padding: 20px 50px 30px 50px;
    background: #fff;
    transition: all 1s ease-in-out;
}

main section#side-project .description h5 {
    font-family: "Roboto Mono", monospace;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
}
main section#side-project .description p {
    font-family: "Roboto Mono", monospace;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #686868;
}
main section#side-project .tech-stack {
    padding-top: 20px;
}

main section#side-project .tech-stack p {
    text-decoration: underline;
}



main section#side-project .corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    /* border-top: 100px solid #189AB4; */
    border-top: 100px solid #636e72c7;
    border-right: 100px solid transparent;
}

main section#side-project .top-right {
    left: auto;
    right: 0;
    transform: rotate(90deg);
}

main section#side-project .bottom-left {
    top: auto;
    bottom: 0;
    transform: rotate(-90deg);
}
main section#side-project .link-icon {
    position: absolute;
    bottom: 68px;
    left: 8px;
    transform: rotate(90deg);
    color: #fff;
}
main section#side-project .github-icon {
    position: absolute;
    right: -32px;
    transform: rotate(-90deg);
    bottom: 64px;
    color: #fff;
}
main section#side-project .link-icon:hover , main section#side-project .github-icon:hover  {
    color: #189AB4;
}
.card:hover{
    box-shadow: 0 0 10px 1px #5ad8c8;
}

main section#side-project .card:hover .title, .card:hover .description {
    height: 50%;
}