@charset "UTF-8";
/* CSS Document */ 

:root {
    --Principal: hsl(0, 0%, 100%);
    --Slate300: hsl(212, 45%, 89%);
    --Slate500: hsl(216, 15%, 48%);
    --Slate900: hsl(218, 44%, 22%);
    
    --Font-Family: 'Outfit', sans-serif;
    --Font-Weight: 400, 700;
    --Font-Size: 0.9rem;
}

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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--Slate300);
    font-family: var(--Font-Family);
    font-size: var(--Font-Size);
    overflow-x: hidden;
}

main {
    background-color: var(--Slate300);
    position: relative;
    width: 100vw;
    height: 100vh;
}

#container {
    background-color: var(--Principal);
    width: 22rem;
    height: 34rem;

    position: absolute;
    top: 50%;
    left: 50%;
    overflow: hidden;

    transform: translate(-50%, -50%);
    border-radius: 20px;
    box-shadow: 0px 25px 30px -15px hsl(218, 44%, 22%, 0.2);

}

#qr-code { 
    width: 90%;
    aspect-ratio: 1/1;
    margin: 20px auto 0 auto;  
    border-radius: 10px;
    background: url(../images/image-qr-code.png) no-repeat center;
    background-size: cover;
}

#text {
    display: block;
    padding: 1em;
}

#text h1 {
    text-align: center;
    color: var(--Slate900);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

#text p {
    text-align: center;
    color: var(--Slate500);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.footer-container {
    color: var(--Slate500);
    position: absolute;
    justify-content: center;
    bottom: 10px;
    width: 100%;
    height: auto;
    display: flex;
    gap: 5px;
    font-size: 0.7em;
    letter-spacing: 0.3px;
}

.footer-container a {
    text-decoration: none;
    color: var(--Slate900);
    font-weight: 700;
}