@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

:root {
  --white: hsl(0, 0%, 100%);
  --light-gray: hsl(212, 45%, 89%);
  --grayish-blue: hsl(220, 15%, 55%);
  --dark-blue: hsl(218, 44%, 22%);
}

body{
  margin:0;
  height: 100vh;
  background-color: var(--light-gray);
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
}

.qr-container {
  width:300px;
  padding: 1rem;
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: 0 30px 25px -8px rgb(0 0 0 / 0.1), 0 4px 20px -2px rgb(0 0 0 / 0.1);
  text-align: center;
} 
.qr-image{
  display: block;
  width: 100%;
  border-radius: .5rem;
}

.qr-container h1 {
  font-size: 1.5em;
  font-weight: bold;
  color:var(--dark-blue);
  padding:0 1em;
  margin:.83em 0;
}

.qr-container p {
  font-weight: 400;
  color:var(--grayish-blue);
  padding:0 1.5rem;

}

footer {
  position:absolute;
  bottom: 5px;
  left:0;
  right:0;
}


