* {
    box-sizing: border-box;
}

:root {
    --primary50: #FAFAFA;
    --primary100: #F4F4F5;
    --primary200: #E4E4E7;
    --primary300: #D4D4D8;
    --primary400: #A1A1AA;
    --primary500: #71717A;
    --primary600: #52525B;
    --primary700: #3F3F46;
    --primary800: #27272A;
    --primary900: #18181B;
    --primary950: #09090B;
    --primary950-rgb: 9, 9, 11;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    min-height: 100vh;
    font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    background-color: var(--primary950);
    /* color: var(--primary200); */
    color: var(--primary50);
    font-weight: 100;
}

.wrapper {
    min-height: 100vh;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 1rem;
    /* padding: 1rem; */
    margin: auto;
}

main.content {
    max-width: 100%;

    /* Image en fond */
    background-image: url('/img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Optionnel : voile sombre pour rendre le texte lisible */
    position: relative;
    overflow: hidden;
    line-height: 1.6;
    padding: clamp(16px, 3vmin, 32px);
}

main.content .logo {
    position: relative;
    z-index: 10;
    height: 8vmin;
    max-height: 50px;
    margin-bottom: 1vmin;
}

main.content .qr-code {
    position: absolute;
    top: clamp(16px, 3vmin, 32px);
    right: clamp(16px, 3vmin, 32px);
    width: 15vmin;
    z-index: 10;
    display: none;
}

main.content p,
main.content h1 {
    position: relative;
    z-index: 10;
    margin: 2rem 0;
    font-size: clamp(14px, 3.5vmin, 20px);
    font-weight: 200;
}

main.content h1 {
    font-size: clamp(30px, 8vmin, 80px);
    font-family: "Roboto", sans-serif;
    max-width: 70%;
    line-height: 1;
}

body h1 strong,
body p strong {
    font-weight: 600;
    color: var(--primary50);
    font-family: "Exo 2", sans-serif;
}

.price {
    font-weight: 600;
    color: var(--primary50);
    font-family: "Exo 2", sans-serif;
    white-space: nowrap;
}

body p strong {
    font-weight: 500;
}

main.content .app-image {
    display: block;
    position: relative;
    z-index: 10;
    margin: auto;
    margin-bottom: 0;
    width: 80vmin;
}

.download-buttons {
    width: 100%;
    display: none;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
}

.download-buttons .download-button {
    width: 40vmin;
}

footer.content {
    color: var(--primary600);
    font-size: clamp(12px, 2.6vmin, 20px);
    font-weight: 400;
    text-align: center;
}