main {
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.columns {
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.header {
  position: relative;
  margin: 1rem 0rem;
  padding: 1rem;
  background-color: white;
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.header_wrapper {
  width: 100%;
  max-width: 45rem;
  padding: 1rem;
}

@media screen and (max-width: 1350px) {
  .header_wrapper {
    padding: 0.5rem;
  }
}
