@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0px;
    padding: 0px;
}

body {
    background-color: hsl(212, 45%, 89%);
}

main {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

div.window-qr {
    background-color: white;
    width: 300px;
    margin: auto;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.062);
    text-align: center;
    overflow: hidden;
}

    .window-qr img {
        width: 100%;
        border-radius: 10px;
    }

    .window-qr h1 {
        color: hsl(218, 44%, 22%);
        font-family: 'Outfit', Arial, sans-serif;
        font-size: 1.4em;
        font-weight:700;
        padding: 20px;
    }
    
    .window-qr p {
        color: hsl(220, 15%, 55%);
        font-family: 'Outfit', Arial, sans-serif;
        font-size: 15px;
        font-weight: 400;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 30px;
    }

div.attribution {
    color: hsl(218, 44%, 22%);
    font-family: 'Outfit', Arial, Helvetica, sans-serif;
    padding-top: 10px;
}

    .attribution a {
        font-weight: bold;
        text-decoration: none;
        transition-duration: .5s;
    }

    .attribution a:hover {
        color: hsl(220, 15%, 55%);
    }