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

body {
  background: url("assets/images/background.jpg");
  background-size: cover;
  background-position: top center;
}

@font-face {
  font-family: "Balsamiq Sans";
  src: url("assets/fonts/BalsamiqSans-Regular.ttf");
  font-display: swap;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 20px 15px;
}

.wrapper .top {
  margin-bottom: 25px;
}

.wrapper .top img {
  max-width: 100px;
}

.wrapper .title {
  max-width: 750px;
  margin-bottom: 50px;
}

.wrapper .title h1 {
  font-size: 50px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-family: "Balsamiq Sans", sans-serif;
}

.wrapper .title p {
  font-size: 16px;
  text-align: center;
  color: #fff;
  margin-top: 10px;
  font-family: "Balsamiq Sans", sans-serif;
  font-weight: 500;
}

.wrapper .download {
  margin: 0 auto;
  margin-bottom: 60px;
}
.wrapper .download p {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-family: "Balsamiq Sans", sans-serif;
  margin-bottom: 10px;
}

.wrapper .download .row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.wrapper .download .row a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  width: 227px;
  height: 64px;

  border-radius: 8px;
}

.bottom {
  display: flex;
  flex-direction: column;
  flex: 1;
}

p.copyright {
  color: #c8c8c8;
  font-size: 14px;
  text-align: center;
  font-family: "Balsamiq Sans", sans-serif;
  font-weight: 400;
}

.wrapper img.additional-logos {
  width: 300px;
  margin: 20px 0;
  display: block;
  margin: 0 auto;
  margin-top: auto;
}

.wrapper p.additional-text {
  color: #fff;
  font-size: 11px;
  text-align: center;
  font-family: "Balsamiq Sans", sans-serif;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 1000px;
}

@media screen and (max-width: 1024px) {
  .wrapper .top {
    margin-top: 50px;
    margin-bottom: 25px;
  }

  .wrapper .top img {
    width: 100px;
  }

  .wrapper .title h1 {
    font-size: 34px;
  }

  .wrapper .title p {
    font-size: 18px;
    padding: 0 20px;
    margin-top: 10px;
  }

  .wrapper .download p {
    font-size: 18px;
  }

  .wrapper .download .row a {
    width: 100%;
    height: 50px;
  }

  .wrapper .download .row a img {
    width: 115px;
    object-fit: scale-down;
  }

  p.copyrigth {
    font-size: 12px;
  }
}
