@font-face {
  font-family: "Silka";
  font-weight: 400;
  src: url("./Silka-Regular.otf");
}

body {
  margin: 0;
  background-color: #212224;
  font-family: "Silka", sans-serif;
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #FEDC5D;
  text-decoration: none;
}

#graphic-container {
  width: 100vw;
  height: 50vw;
  max-height: 225px;
}

#graphic-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

#container {
  max-width: 600px;
  margin: 0 auto;
}

#badge-container {
  margin: -15vw auto 0;
  text-align: center;
}

@media (min-width: 600px) {
  #badge-container {
    margin-top: -90px;
  }
}

#badge-container img {
  width: 30vw;
  max-width: 180px;
}

main {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 48px 32px 64px;
}

#portraits {
  display: flex;
  justify-content: space-between;
  margin: 48px 0 32px;
}

.portrait {
  width: calc(50% - 8px);
  font-size: 10px;
  text-align: center;
}

.portrait p {
  color: #fff;
  margin-top: 8px;
  font-size: 10px;
}

@media (min-width: 600px) {
  .portrait p {
    font-size: 12px;
  }
}

.portrait:first-of-type {
  margin-top: 32px;
}

#text-content {
  font-size: 16px;
}

#logo {
  max-width: 96px;
  margin-top: 52px;
}