body{
  display: flex;
  justify-content: center;
  min-height: 100vh;
  margin: 0 8%;
  overflow-y: hidden;
}

main{
  display: flex;
  align-items: center;
  gap: 5em;

  section{
    width: 300px;
    flex-shrink: 0;
  }
}

img{
  display: block;
  max-width: 100%;
  max-height: 100%;
  filter: var(--c-outline);
}

@media (max-width: 1000px){
  body{
    margin: 0 !important;
    align-items: center;
  }

  img{
    display: none;
  }
}