.projects {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 2rem auto;
    gap: 2rem;
}

.projects__card {
    display: flex;
    justify-content: space-evenly;
    border: 2px solid;
}

.card__img {
    width: 50%;
}

.card__img img {
    width: 100%;
    height: 100%;
}

.card__content {
    font-size: 1.125rem;
    color: #fffdfa;
    padding: 1.5rem;
    width: 50%;
}

.card__content div p,
.card__tagbox,
.card__tagbox span,
.card__content a {
    margin-top: 1rem;
}

.card__tagbox {
    display: flex;
    gap: 0.5rem;
}

.card__tagbox span {
    padding: 5px 10px;
    border-radius: 6px;
    border: 2px #09b4df solid;
}

.card__content a {
    display: inline-block;
    background: #09b4df;
    padding: 0.5rem 0.75rem;

    border-radius: 6px;
    outline: none;
    border: none;
}
.card__buttons {
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

.card__buttons a {
    color: #fffdfa;
}

hr {
    border-color: #09b4df;
}

@media screen and (max-width: 1024px) {
    .projects {
        max-width: 600px;
    }
    .projects__card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .card__content {
        width: 80%;
    }

    .card__img {
        width: 100%;
    }
}
