#title {
    position: relative;
    top: 4.5rem;
    left: 0%;
    width: 100%;
    font-size: 4rem;
    text-align: center;
}

#projects {
    position: absolute;
    top: 14rem;
    left: 10%;
    width: 80%;
    height: fit-content;
    padding-bottom: 8rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.project {
    width: 40%;
    margin: 1rem;
    height: 10rem;
    background-color: black;
    border: 2px #4da6ff solid;
    transform: translateZ(0);
    transition: all 0.2s;
    color: white;
    text-decoration: none;
}

.project h1 {
    padding-top: 2rem;
    width: 100%;
    text-align: center;
}

.project .badge {
    position: absolute;
    left: 0%;
    bottom: 0%;
    z-index: 0;
}

.project:hover {
    transform: scale(1.05);
    border: 2px solid #fff300;
}
.project:visited {
    color: white;
    text-decoration: none;
}

#projectBody {
    text-align: center;
    height: fit-content;
    position: relative;
    top: 4rem;
    left: 20%;
    width: 60%;
    font-size: 18px;
    padding-bottom: 15rem;
}
#projectBody a {
    color: #4da6ff;
}
#projectBody a:hover {
    color: #fff300;
}
#projectBody img {
    width: 30%;
    aspect-ratio: auto;
}

@media (max-width: 800px) {
    .project {
        width: 90%;
    }

    #projectBody {
        position: relative;
        left: 10%;
        width: 80%;
        font-size: 16px;
    }

    #projectBody img {
    width: 60%;
    aspect-ratio: auto;
}
}