main {
  top: 100px;
  display: flex;
  gap: 4em;
}

main > section {
  border-radius: 8px;
  border: 1px solid;
  padding: 1em;
  box-shadow: 0px 0px 4px;
  transition: all 0.25s;
  flex: 1;
}

main > section:hover {
  box-shadow: 0px 0px 16px;
}

.button {
  transition: all 0.25s;
  margin-bottom: 0;
}

.button-outline:hover {
  color: #03DAC6 !important;
  border-color: #03DAC6 !important;
}
