* {
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background-color: #231438;
  color: #fff;
}
.main {
  background-color: #231438;
  margin: auto;
  width: 100vw;
  height: 100vh;
}
.center {
  width: 100%;
  height: auto;
  min-height: 100%;
  margin: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 50px;
}
.text {
  color: #fff;
  z-index: 3;
  font-style: italic;
  margin: 45px 75px;
}
.text img {
  width: 300px;
}
.text h1 {
  font-size: 4rem;
}
.text h2 {
  font-size: 3rem;
  color: #fcb349;
}
.text h3 {
  font-size: 2rem;
}
.text p {
  font-size: 1.3rem;
  font-style: normal;
}
.download button {
  all: unset;
  border: 1px solid #fcb349;
  border-radius: 7px;
  padding: 15px 17px;
  margin-top: 33px;
}
.download button a {
  color: #fcb349;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  font-style: normal;
}
.image {
  margin-bottom: 33px;
}
.footer a {
  display: block;
  width: fit-content;
  margin: auto;
  font-size: 0.8rem;
  color: #54436b;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .center {
    flex-direction: column;
    align-items: center;
    margin: 10px;
    padding-bottom: 20px;
  }

  .text {
    margin: 20px 10px;
    text-align: center;
  }

  .text img {
    width: 70%;
    max-width: 250px;
  }

  .text h1 {
    font-size: 2rem;
  }

  .text h2 {
    font-size: 1.8rem;
  }

  .text h3 {
    font-size: 1.2rem;
  }

  .text p {
    font-size: 1rem;
  }

  .download button {
    padding: 12px 15px;
    margin-top: 20px;
  }

  .download button a {
    font-size: 1.2rem;
  }

  .image {
    width: 90%;
    text-align: center;
    margin-top: 20px;
  }

  .image img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}
