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

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

body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    background: hsl(212, 45%, 89%);
}

.container {
    height: 100vh;
    display: grid;
    place-items: center;
}

.container__qr {
    filter: drop-shadow(2px 4px 8px #575757);
    background: hsl(0, 0%, 100%);
    margin: auto;
    width: 345px;
    height: auto;
    border-radius: 15px;
}

.container__qr--body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;    
}

.container__qr--image {    
    border-radius: 15px;
    width: 320px;
    height: 320px;
}

.container__qr--title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    width: 320px;
}

h2 {
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}

h3 {
    padding-bottom: 20px;
    text-align: center;
    color: hsl(220, 15%, 55%)
}