@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&family=Teko:wght@300&display=swap');

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

body {
    background-color: hsl(212, 45%, 89%);

    font-family: 'Outfit', sans-serif;
    font-family: 'Teko', sans-serif;
}

.mainContainer {
    display: flex;
    /* flex-direction: column; */ 
    justify-content: center;
    align-items: center;

    /* top: 0;
    left: 0;
    right: 0;
    bottom: 0; */
    width: 100vw;
    height: 100vh;
}

.qrImage {
    width: 230px;
    border-radius: 10px;
}

.component {
    background-color: hsl(0, 0%, 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;

    /* left: 50%;
    top: 50%; */
    width:260px;

    padding: 20px 20px;
    border-radius: 20px;
}

.content {
    margin-top: 10px;
    text-align: center;
}

.title {
    color: hsl(218, 44%, 22%);
    font-weight: 700;
    line-height: 100%;
}

.content p {
    color: hsl(220, 15%, 55%);   
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    margin-top: 10px;
}
