@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f2eee5;
  font-family: "Roboto", sans-serif;
  min-height: 100vh;
}

#app {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 1200px;
  max-width: 90%;
  margin: auto;
  padding-top: 8rem;
}

#app img {
  width: 500px;
  align-self: self-start;
}

.content p {
  color: #173e67;
  font-size: 30px;
  font-weight: 200;
  position: relative;
  z-index: 2;
}

.content p.partner-text {
  font-size: 20px;
}

#app img.partner-img {
  mix-blend-mode: multiply;
  width: 250px;
  margin-top: 20px;
  display: block;
  position: relative;
  z-index: 2;
}

.mail {
  text-decoration: none;
  color: #173e67;
  font-weight: 400;
}

.footer-image {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
}

@media only screen and (max-width: 1100px) {
    #app {
        flex-direction: column;
        padding: 4rem 2rem 8rem 2rem;
    }

    #app img {
        max-width: 80%;
    }

    .content p {
        font-size: 20px;
    }

    .content p.partner-text {
        font-size: 16px;
    }

    #app img.partner-img {
        width: 200px;
        max-width: 80%,;
    }
}