/*font*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/*font*/

.outfit-unique {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/*Colors*/
:root {
    --White: hsl(0, 0%, 100%);
    --Slate-300: hsl(212, 45%, 89%);
    --Slate-500: hsl(216, 15%, 48%);
    --Slate-900: hsl(218, 44%, 22%);
}


/*Qr code*/

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--Slate-300);
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: var(--Slate-900);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--White);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    width: 300px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    width: 280px;
}

p {
    margin-bottom: 1rem;
    width: 280px;
}

img {
    width: 290px;
    height: 290px;
    margin-bottom: 1rem;
    border-radius: 10px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.attribution {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: absolute;
    bottom: 0;
}


/*Media queries*/

@media (min-width: 375px) and (max-width: 767px) {
    .container {
        width: 350px;
    }

    img {
        width: 340px;
        height: 340px;
    }
}

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

    img {
        width: 300px;
        height: 290px;
    }
}

