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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #FFFFFF;
    --slate-900: #1F314F;
    --slate-500: #68778D;
    --slate-300: #D5E1EF;
    --spacing-500: 40px;
    --spacing-300: 24px;
    --spacing-200: 16px;
}

body {
    font-family: "Outfit", sans-serif;
    background-color: var(--slate-300);
    width: 100vw;
    height: 100vh;
}

main {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

#qr-code-container {
    background-color: var(--white);
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    width: 320px;
    height: 499px;
    border-radius: 20px;
    padding: var(--spacing-200);
    box-shadow: 0 25px 25px 0 rgb(0, 0, 0, 4.77%);
}

#qr-code {
    width: 288px;
    overflow: auto;
    border-radius: 10px;
    margin-bottom: var(--spacing-300);
}

#qr-code-text {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 var(--spacing-200);
}

#qr-code-text > h1 {
    font-size: 22px;
    font-weight: bold;
    line-height: 120%;
    letter-spacing: 0px;
    margin-bottom: var(--spacing-200);
    color: var(--slate-900);
}

#qr-code-text > p {
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0.2px;
    color: var(--slate-500);
}

footer {
    background-color: var(--slate-300);
    color: var(--slate-300);
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 8px;
    position: absolute;
    bottom: 0;
    width: 100vw;
    transition: .5s ease-in-out;
}

footer:hover {
    background-color: var(--slate-900);
    color: var(--white);
}

footer a {
    color: var(--slate-300);
    text-decoration: none;
    font-weight: bold;
    transition: .5s ease-in-out;
}

footer a:hover {
    background-color: var(--slate-900);
    color: var(--slate-500);
}

footer a:hover {
    color: var(--white);
}