@font-face {
  font-family: 'Nexa Light';
  src: url('../fonts/Nexa Light.otf');
  font-style: normal;
}
@font-face {
  font-family: 'Nexa Bold';
  src: url('../fonts/Nexa Bold.otf');
  font-style: normal;
}

html {
  font-size: 12px;
  position: relative;
  min-height: 100%;
}

body {
  margin: 0;
  text-align: center;
  font-family: "Nexa Light", sans-serif;
}

h1 {
  font-family: "Nexa Bold", sans-serif;
  font-size: 4em;
  color: white;
}

.list-container {
  display: flex;
  flex-direction: column;
  width: max-content;
  margin: 0 auto;
  gap: 0.5em;
  background-color: white;
  padding: 1em 2em;
}
img {
  height: 120vh;
}
.image-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

a {
  color: black;
}
.container {
  background-color: white;
  margin: 3em 3em;
}
.text-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  height: 100%;
  padding: 2em;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 370px) {
  html {
    font-size: 14px;
  }
}


/*----*/

@media (max-width: 450px) {
  .container {
    margin: 3em 1.5em;
  }
}