* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding-top: 100px;

    font-family: Arial, sans-serif;
    background: #ffffff;
}

.container {
    text-align: center;
}

.logo {
    width: 500px;
    max-width: 80vw;
}

.subtitle {
    margin: 15px 0 0 0;

    font-size: 16px;
    font-weight: 400;

    color: #111111;
}

.stores {
    display: flex;
    justify-content: center;
    gap: 16px;

    margin-top: 160px;
}

.store-link {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 130px;
    height: 45px;

    border-radius: 6px;

    background: #000000;
    color: #ffffff;

    text-decoration: none;

    font-size: 12px;
}

.confirmed-container {
    text-align: center;
}

.confirmed-message {
    margin-top: 35px;
}

.confirmed-message h1 {
    margin: 0;

    font-size: 22px;
    font-weight: 600;

    color: #000000;
}

.confirmed-message p {
    margin-top: 5px;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;

    color: #000000;
}