#projects {
    display: flex;
    flex-direction: column;
    margin-block: 60px;
    color: white;
    margin-inline: 24px;
}

#projects h1 {
    color: #FCFAEE;
    margin-bottom: 32px;
}

.projects-wrapper {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1100px;
}

.project-container {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background-color: rgb(37, 37, 37);
    box-shadow: inset 0px 0px 8px 2px rgb(56, 56, 56);
    border-radius: 12px;
    max-width: 450px;
    width: 100%;
}

.project-top {
    display: flex;
}

.project-top > img {
    height: 60px;
    margin-right: 16px;
    margin-bottom: 12px;
    margin-left: 0;
}

.title {
    display: flex;
    width: fit-content;
    align-items: center;
    border-bottom: 1px solid rgb(255, 183, 49);
    font-size: 1.5rem;
    margin: 0;
    color: white;
    text-decoration: none;
}

.title svg {
    height: 20px;
}

.title:hover {
    opacity: 75%;
}

.desc {
    margin-top: 8px;
    font-size: 1rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9rem;
    border-top: 1px solid rgb(255, 183, 49);
    padding-top: 8px;
}

.tags > span {
    display: flex;
    align-items: center;
}

.tags img {
    height: 12px;
    margin-right: 4px;
}

.tags span::after {
    content: "|";
    margin-inline: 4px;
}

.tags span:last-child:after {
    content: "";
}

.roundedD2G {
    border-radius: 12px;
}

@media (max-width: 1100px) {
    .project-top > img {
        height: 60px;
        margin-right: 16px;
    }

    .title {
        font-size: 1.3rem;
    }
    
    .desc {
        font-size: 0.9rem;
    }
}