@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Titillium+Web:wght@700&display=swap");

* {
  box-sizing: border-box;
}

body {
  --accentuation-color: #f7dc6f;
  --background-color: #fff8e1;
  --text-color: #000000;

  margin: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  background-color: var(--background-color);
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;

  font-family: "Montserrat", sans-serif;
  display: flex;
  justify-content: center;
  color: var(--text-color);
}

a {
  color: var(--text-color);
}

.wrapper {
  max-width: 600px;
  width: 100%;
}

@media (max-width: 800px) {
  .wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
}

h1 {
  font-family: "Titillium Web", sans-serif;
  font-size: 3rem;
  margin: 0;
  text-align: center;
}

.subtitle {
  text-align: center;
}

.picture_container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.picture {
  width: 32%;
  height: auto;
  aspect-ratio: 1/1;
}

.picture img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  border-radius: 3px;
}
