body {
    background: #f5fcde;
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-display: swap;
    font-style: normal;
    color: #5e17eb;
}

.gradient {
    background-image: radial-gradient(circle at top right, #eed0d6 0%, #f5fcde 70%);
}

.mountain {
    background-image: url("content/mountain.png");
    background-size: 100vw 38vh;
    background-position: bottom;
    background-repeat: no-repeat;
    min-height: 38vh;
}

.team-section {
    background: #9aacd3;
    min-height: 70vh;
}

p {
    white-space: pre-line;
}

.card {
    background: #f5fcde;
    color: #5e17eb;
    margin-bottom: 1rem;
}


.portrait {
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0.375rem;
    width:100%;
    height:100%;
    min-height: 60vh;
}

.brody {
    background-image: url("content/brody_volpe.jpeg");
    background-position: center 15%;
}

.liam {
    background-image: url("content/liam_harrop.jpeg");
    background-position: center 30%;
}

.colin {
    background-image: url("content/colin_smith.jpeg");
    background-position: center 40%;
}

.christian {
    background-image: url("content/christian_griffin.jpeg");
    background-position: center 10%;
}

.card-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.btn-purple {
    background-color: #5e17eb;
    color: #f5fcde;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-purple:hover {
    background-color: #491acc;
    color: #eeefac;
}

.btn>img {
    max-width: 1rem;
    width: auto;
    margin: 0 0.5rem;
}

.card-body>.row {
    justify-content: space-around;
}

@media screen and (min-width: 768px) {
    .card-body>.row {
        justify-content: start;
    }
}

@media screen and (min-width: 992px) {
    .card {
        width:calc(50% - 0.5rem);
        min-height: 43vh;
    }

    .card-container {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: start;
    }

    .portrait {
        min-height: 43vh;
    }
}
