body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}

#ar-button {
  background-color: #fff;
  padding: 10px;
  font-family: Roboto Regular, Helvetica Neue, sans-serif;
  font-size: 16px;
  z-index: 5;
  color: #8EC5FC;
}

.qrcode {
  padding: 20px 20px 60px 20px;
  background: white;
  position: absolute;
  text-align: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  left: 50%;
  transform: translateX(50%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}
.qrcode__close {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8EC5FC;
  color: white;
  padding: 10px 30px;
  font-size: 14px;
  cursor: pointer;
}
.qrcode--open {
  opacity: 1;
  transform: translateX(-50%);
  pointer-events: all;
}

.container {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background-color: #8EC5FC;
  background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .container {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
}

.object {
  position: absolute;
  bottom: 0;
  display: flex;
  width: 100%;
  justify-content: center;
}
.object__item {
  margin: 0 10px;
  padding: 10px 30px;
  background-color: #8EC5FC;
  color: white;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: 0.5s all ease;
}
.object__item--active {
  color: #e0c4fc;
  background: white;
  pointer-events: none;
}

.content {
  width: 50vw;
  padding: 20px 30px;
  color: white;
}
.content h1 {
  margin: 0;
  font-size: 70px;
  font-weight: 900;
}
.content p {
  line-height: 1.5;
}
@media (max-width: 768px) {
  .content {
    width: calc(100% - 60px);
    padding: 20px 30px;
  }
  .content h1 {
    font-size: 40px;
  }
}

.model {
  width: 50vw;
  height: 50vh;
  overflow: hidden;
  background: transparent;
  border: unset;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .model {
    padding-top: 15vh;
    width: 100%;
  }
}
.model__arIcon {
  cursor: pointer;
}
.model__arIcon polyline, .model__arIcon line {
  stroke: white;
}
.model__prompt {
  width: 80px;
  height: 40px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.2);
  fill: white;
  border-radius: 10px;
}

.logoWrapper {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30px;
  left: 30px;
}
