@charset "utf-8";
.projects {
    padding: 20px 0 40px;
    color: black;
}
.projects-title {
    position: relative;
    margin: 50 0 15px;
    padding: 10px;
    font-size: 35px;
    border-color: coral;
    font-family: "Yu Gothic", sans-serif;
    text-align: center;
}
.projects-title:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 0;
    border-bottom: solid 2px #000;
    transform: translateX(-50%);
    animation: border-top 0.5s linear forwards;
}
@keyframes border-top {
    0% {
      width: 0%;
    }
    100% {
      width: 400px;
    }
}
.projects-title:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 76px;
    width: 0;
    border-top: solid 2px #000;
    transform: translateX(-50%);
    animation: border-bottom 0.5s linear forwards;
}
@keyframes border-bottom {
    0% {
      width: 0%;
    }
    100% {
      width: 400px;
    }
}
.projects-card-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.projects-card {
    width: 50%;
    margin-top: 35px;
}
.projects-card-inner {
    padding: 25px 30px;
    background-color: #dbe0e4;
    border-radius: 7px;
    box-shadow: 1px 1px 4px #d2d4d6;
    text-align: center;
    margin: 0 20px;
}
.projects-main-img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: 0.3s;
}
.projects-main-img:hover {
    box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
}
.projects-main-text {
    margin-bottom: 8px;
}
