@font-face {
  font-family: "Droids Sans";
  src: url("../assets/fonts/Droids Sans Italic.otf") format("opentype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Droids Sans", sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}
.container--disclaimer {
  width: 100%;
  padding: 50px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .container--disclaimer {
    padding: 20px;
  }
}
.container--disclaimer img {
  width: 25vw;
  height: 30vh !important;
}
.container img {
  width: 25vw;
  height: 40vh;
  padding: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: multiply;
  border-radius: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media screen and (max-width: 768px) {
  .container img {
    width: 40vh;
    height: 40vh;
  }
}

a {
  text-decoration: underline;
  color: #333;
}/*# sourceMappingURL=index.css.map */