@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
/* =============== general ============ */
*,
*::before,
*::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'outfit' sans-serif;
    max-width: 1440px;
    background-color: hsl(212, 45%, 89%);
    
img{
    width: 100%;
    display: block;
}
/* ============= typography =========== */
h1{
    font-size: 1.5rem;
}
p{
    color: hsl(218, 44%, 22%);
    font-family: 'outfit' sans-serif;
    font-size: 0.94rem;
    font-weight: 400;
}

/* ============= layout  ===============*/
.container{
    max-width: 80%;
    background-color: #87cfeb4b;
    margin: 6.25em auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 47.5rem;
}
}
.main{
    max-width:21.875rem;
    height: 32.5rem;
    background-color:  hsl(0, 0%, 100%);
    margin: 0 auto;
    border-radius: 1.25em;
    /* text-align: justify; */
}
.qr-image{
    max-width:20rem;
    margin: 1.25em auto;
}
img{
    border-radius: 0.9375em;
}
h1{
    margin:1.25em 1.5em;
}
.main p{
    margin:1.25em 3.125em;
}

.attribution { 
    font-size: 11px; 
    text-align: center; 
    margin-top: auto;
    background-color: rgba(70, 131, 180, 0.363);
}
.attribution a { 
    color: hsl(228, 45%, 44%);
    text-decoration: none;
    font-size: 1.5rem;
    padding-top: 1em;
 }
.attribution a:hover,
attribution a:focus{ 
    color: hsl(228, 77%, 48%);
    text-decoration: underline;
 }