/* Boilerplates */

* {
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: "montserrat";
}

body {
    width: 100vw;
    height: 100vh;
}

/* Main style */

body {
    --prim-clair: hsl(30, 25%, 90%);
    --prim-foncé: hsl(30, 14%, 10%);
    --accent: hsl(0, 100%, 45%);
}

body {
    background: var(--prim-clair);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.header {
    margin: 2rem 0;
}

.header .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.title {
    color: #0c0909;
    text-align: center;
}

.title-desc {
    width: 100%;
    max-width: 20rem;
    text-align: center;
}

.container .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn-cta {
    width: 15rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    background: var(--accent);
    border: none;
    cursor: pointer;
    font-size: larger;
    font-weight: bold;
    color: #fff;
}

.scanner {
    width: 100%;
    max-width: 25rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cam-display {
    width: 15rem;
    height: 15rem;
    border-radius: 0.5rem;
    border: 1px solid #fff;
    background: #111;
}


.btn-cta:hover {
    opacity: 0.8;
}

.footer {
    margin-top: auto;
    padding: 1rem;
    background: var(--prim-foncé);
    color: #fff;
    text-align: center;
}

/* Modules */

.wrapper {
    width: 100%;
    max-width: 900px;
    margin-inline: auto;
    /* background: #0001; */
}