@import url("https://use.typekit.net/qyw4qkj.css");

body {
  min-height: 100vh;
  min-width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main {
  margin-right: 8%;
  margin-left: 12%;
  width: 100%;
  display: flex;
  gap: 3%;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;

  @media screen and (max-width: 1100px) {
    flex-direction: column;
  }

  a {
    cursor: pointer;
  }
}

.image-link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 2;
  
  img {
    width: 100%;
    object-fit: scale-down;
    height: auto;
  }
}

a:hover {
  transform: scale(1.2);
}

h1 {
  font-family: Degular, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}