@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --darkblue : hsl(218, 44%, 22%);
    --grey: hsl(216, 15%, 48%);
    --lightblue :  hsl(212, 45%, 89%);
    --white : hsl(0, 0%, 100%);
}

img {
    display: inline-block;
    max-width: 100%;
}

body {
    font-family: "Outfit" , sans-serif;
    /* font-size: 15px; */
    background-color: var(--lightblue);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 
}


h1 {
    font-size: 21px;
    color: var(--darkblue);
    text-align: center;
    margin-bottom: 16px;

}

p {
    color: var(--grey);
    text-align: center;
    margin-bottom: 14px;
    font-size: 15px;
    
}
.container {
    display: flex;
    align-items: center;
    height: 100vh;
  
}

.card {
    max-width: 300px;
  margin-inline: auto;
  padding: 16px;
  background-color: var(--white);
  border-radius: 15px;
}

.qr {
    border-radius: 15px;
    margin-bottom: 16px;
}
