:root {
    --slate-300: hsl(212, 45%, 89%);
    --slate-500: hsl(216, 15%, 48%);
    --slate-900: hsl(218, 44%, 22%);
    --light-grey: #f5f6f7;
    --dark-grey: #0a0a23;
    --white: hsl(0, 0%, 100%);
    --golden-yellow: #feac32;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Outfit", sans-serif;
    color: var(--dark-grey);
    background-color: var(--slate-300);
    font-size: 15px;
    min-width: 375px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 325px;
    background-color: var(--light-grey);
    padding: 0 min(15px, 2vw) min(15px, 2vw) min(15px, 2vw);
    border-radius: 10px;
    text-align: center;
}

#qr-code {
    border-radius: 10px;
    width: 300px;
}

#caption {
    font-weight: 700;
    color: var(--slate-900);
    font-size: 20px;
}

p {
    font-weight: 400;
    color: var(--slate-500);
    margin: 0 15px;
}

h1 {
    text-align:center;
}