:root {
    --slate-300: hsl(212, 45%, 89%);
    --slate-500: hsl(216, 15%, 48%);
    --slate-900: hsl(218, 44%, 22%);
    --slate-001: white;
}

body {
    font-family: 'Outfit', sans-serif;
    display: flex; 
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 80%;
    padding: 1rem;
    margin: 0 auto;
    background-color: var(--slate-300);
}

p {
    font-size: 15px;
}

.attribution {
        text-align: center; 
        margin-top: 1rem;
    }
    
.attribution a { 
    color: hsl(228, 45%, 44%); 
}

.qr-code {
    border-radius: 1rem;
    width: 90%;
    height: auto;
}

.inner-container {
    background-color: var(--slate-001);
    padding: 1rem 0;
    text-align: center;
    border-radius: 1rem;
    width: 320px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
}
.title, .description {
    padding: 0 2.68rem;
}

.title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
}

.description {
    color: var(--slate-500);
    font-weight: 400;
}

@media (min-width: 1440px) {
   
        .inner-container {
            width: 500px;
        }
}