.athleticshero {
  position: relative;
  padding: 40px;
  background-color: #004185;
  color: white;
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(448px, 2fr));
    justify-items: center;
    align-items: center;
  z-index: 1;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}
.athleticshero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://millikin.edu/sites/default/files/2022-10/field2.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: blur(12px);
  opacity: .4;
}