/* Removing any default browser styles */

* {
  margin: 0;
}

body {
  background: #d5e1ef;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  line-height: 1.5;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qrCard {
  background: white;
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  max-width: 20rem;
  min-width: 10rem;
}

img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.title {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.description {
  opacity: 0.5;
  text-align: center;
}
