.development-header {
    padding-left: 1em;
}

.development-header h1 {
    font-size: 2em;
    padding-top: 4em;
    border-bottom: solid #a60f2d 4px;
    width: fit-content;
}

.development-main {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 2.5vw;
    place-content: center;
    padding: 1em;
}

.development-card {
    overflow-y: hidden;
    width: 27.5vw;
    height: fit-content;
    background-color: rgb(238, 238, 238);
}

.development-card img {
    width: 27.5vw;
    height: auto;
    background-color: antiquewhite;
}

.development-text {
    padding: 1em;
}

.development-text h1 {
    font-size: 1.5em;
    border-bottom: solid #a60f2d 4px;
    width: fit-content;
}

.development-text p {
    padding-top: .5em;

}

@media (max-width: 750px) {
    .development-main {
      grid-template-columns: auto;
    }

    .development-card {
        width: 75vw;
    }

    .development-card img {
        width: 75vw;
    }

    .development-header {
        padding-top: 5em;
    }

    
  }