.foundation-failure-image-container {
    display: flex;
    flex-direction: row;
    max-width: 80vw;
}

.foundation-failure-image {
    max-width: 40vw;
}

.split-view {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 1rem
}

.split-view a{
    text-decoration: none;
    max-width: 35vw;
    margin: 0 2rem 0 2rem;
    color: white;
    background-color: var(--primary);
    border-radius: 2rem;
    padding: 1rem;
}

.split-view h2{
    color: white;
}

.home-contents {
    min-width: 80vw;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 1rem;
}


.home-card {
    width: 40vw;
    margin: 0 1rem;
    border: 2px solid black;
    border-radius: 2rem;   
    overflow: hidden;
    background-color: #eee;
}

.home-card-description {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-card-description p {
    font-size: large;
}

.home-card img {
    width: 40vw;
    height: 25vw;
}

.home-card button {
    padding: 1rem;
    margin: 1rem;
    font-size: larger;
    border: 0;
    border-radius: 1rem;   
    background-color: var(--primary);
    cursor: pointer;
    color: white;
}


.home-card p {
    margin: 1rem;
}