* {
  font-family: Arial, Helvetica, sans-serif;
}

html, body {
  margin: 0;
  border: 0;
  padding: 0;
  background-color: #fff;
}

@font-face {
  font-family: "Aptos Black";
  src: url("./aptos-black.ttf") format("truetype");
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "Aptos Display";
  src: url("./aptos-display.ttf") format("truetype");
  font-style: normal;
  font-display: swap
}

h1 {
  font-family: "Aptos Black", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 18px;
}

.logo {
  text-align: right;
  padding-top: 10px;
  padding-right: 100px;
}

.corps {
  font-family: "Aptos Display", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 14px;
  min-width: 500px;
}

main {
  display: flex;
  gap: 1rem;
  width: 90%;
  max-width: 900px;
  margin: auto;
  margin-top: 20px;
}

.photos img {
  max-width: 250px;
  min-width: 120px;
  width: 25vw;
  box-sizing: border-box;
}

@media only screen and (max-width:500px) {
  main {
    display: block;
  }

  .photos {
    width: 100%;
    text-align: center;
    margin: 10px;
    padding:0;
  }

  .photos img {
    width: 30%;
    max-width: none;
    min-width: auto;
  }

  .corps {
    width: 100%;
    min-width: auto;
    margin: 10px;
  }
}
