* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #d92555;
  color: #ffffff;
}

.qr-page {
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #d92555;
  background-image: url("./assets/pattern.png");
  background-repeat: repeat;
  background-size: 70%;
}

.qr-card {
  width: 100%;
  max-width: 980px;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  padding: 60px 70px;
  position: relative;
}

.logo {
  position: absolute;
  top: 35px;
  right: 55px;
}

.logo img {
  width: 90px;
  height: auto;
}

.content {
  max-width: 720px;
}

.small-title {
  font-size: 20px;
  margin-bottom: 18px;
}

.manufacturer {
  margin-bottom: 32px;
}

.manufacturer h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 100%;
}

.manufacturer p,
.identification p {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
}

.identification {
  margin-top: 35px;
}

.identification h1 {
  font-size: 26px;
  margin-bottom: 15px;
}

/* Mobile QR page */
@media (max-width: 600px) {
  .qr-page {
    padding: 20px 14px;
    align-items: flex-start;
    background-size: 100%;
  }

  .qr-card {
    min-height: 85vh;
    border-radius: 20px;
    padding: 130px 24px 35px;
  }

  .logo {
    top: 25px;
    right: 28px;
  }

  .logo img {
    width: 65px;
  }

  .small-title {
    font-size: 13px;
  }

  .manufacturer {
    margin-bottom: 26px;
  }

  .manufacturer h2 {
    font-size: 17px;
  }

  .manufacturer p,
  .identification p {
    font-size: 12px;
    line-height: 1.45;
  }

  .identification h1 {
    font-size: 18px;
  }
}
