@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

:root {
    --white: hsl(0, 0%, 100%);
    --lightgray: hsl(212, 45%, 89%);
    --grayblue: hsl(220, 15%, 55%);
    --darkblue: hsl(218, 44%, 22%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--grayblue);
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.box {
    max-width: 300px;
    background: var(--white);
    text-align: center;
    margin: auto;
    border-radius: 25px;
    padding: 25px;
}

.qrcode {
    margin: 0 0 25px 0;
    border-radius: 12.5px;
}

.texts {
    font-family: 'Outfit';
}

.texts h1 {
    font-weight: 700;
    font-size: 20px;
}

.texts p {
    font-size: 15px;
    font-weight: 400;
    color: var(--lightgray);
    padding: 8px;
}

.attribution {
    font-size: 11px; 
    text-align: center; 
}

.attribution a { 
    color: hsl(228, 45%, 44%); 
}
