html, body {
    width: 100vw;
    height: 100vh;
    background: radial-gradient(
            farthest-side at bottom left,
            rgba(116, 180, 255, 0.5),
            transparent
    ),
    radial-gradient(
            farthest-corner at bottom right,
            rgba(115, 103, 255, 0.5),
            transparent
    ),
    radial-gradient(
            farthest-side at top left,
            rgba(193, 182, 255, 0.5),
            transparent
    ),
    radial-gradient(
            farthest-corner at top right,
            rgba(214, 161, 255, 0.5),
            transparent
    );
}

img {
    max-width: 200px;
    max-height: 200px;
}

.projectcards-1 {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding-bottom: 100px;
}

.card {
    width: 300px;
    height: 175px;
    margin-right: 10px;
    margin-top: 10px;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}