body {
  background-color: #eeeeee;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: 100vh;
  /* 40px for body margins, 120px for max text_logo height */
  font-family: "Inter", sans-serif;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 8s;
}

.content-container {
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  /* display: flex; */
  flex: 1 1;
  width: 100%;
  height: 100%;
  padding: 2em;
}


img.icon-logo {
  max-width: 20vw;
  max-height: 20vh;
  width: auto;
  height: auto;
  max-width: 369px;
  margin-bottom: 20px;
}

img.text-logo {
  max-width: 120px;
  width: 100%;
  align-self: flex-end;
  padding: 40px;
}

@media (max-width: 768px) {
  img.text-logo {
    max-width: 100px;
    align-self: center;
    padding: 20px;
  }

  img.icon-logo {
    max-width: 169px;
  }
}
