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

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(212, 45%, 89%);
  position: absolute;
  font-family: "Outfit" sans-serif;
  font-size: 50px;
  width: 100%;
  height: 100vh;
}
#box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Outfit", sans-serif;
  position: absolute;
  margin: 2px 2px;
  border-radius: 10px;
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0 3px 20px rgb(0 0 0 / 0.1);
}
#imgs {
  margin-left: 8px;
  margin-right: 8px;
  margin-top: 8px;
  width: 9rem;
  height: 9rem;
  border-radius: 10px;
}
 #paragraph {
  margin-top: 15px;
  font-size: 10px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  text-align: center;
  color: hsl(218, 4 4%, 22%);
}
#scan{
  font-size: 8px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  text-align: center;
  color: hsl(220, 15%, 55%);
  margin-top: 10%;
  margin-bottom: 12px;
}
/*for mobile phones*/
@media only screen and (max-width: 375px) {
  #box {
    position: absolute;
    margin-top: 30%;
    margin-left: 7%;
    border-radius: 20px;
    background-color: hsl(0, 0%, 100%);
    box-shadow: 0 3px 20px rgb(0 0 0 / 0.1);
  }
}
