.about-section{
  margin-top: var(--header-margin);
  padding: 0rem 1rem 1rem 1rem
}

p{
  font-size: large;
}

.headline-container{
  
  display: flex;

  img{
    border-radius: var(--corners);
    box-shadow: 2px 2px 4px lightgray;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    transition: all .3s ease-in-out;
  }

  img:hover{
    box-shadow: 2px 2px 4px rgb(190, 190, 190);
  }

  @media screen and (max-width: 1440px){
    flex-direction: column;
  }

}

.headline{
  font-size: 3rem;
}

.info-cards-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 2rem;
}

.info-card{
  border-radius: var(--corners);
  box-shadow: 2px 2px 4px lightgray;
  background-color: var(--mint-green);
  padding: 1rem;
  max-width: 400px;
  transition: all .3s ease-in-out;
}

.info-card:hover{
    box-shadow: 2px 2px 4px rgb(190, 190, 190);
}