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

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

.applink {
    min-height: 100vh;
    color: #000;
    line-height: 1.15;
    font-family: "Arial", "Helvetica", "sans-serif";
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.applink__content {
    max-width: 500px;
    margin: 0 auto;
    padding: 25px;
    border-radius: 32px;
    background-color: #ECD0FB;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 500px;
    height: 160px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-height: 100%;
}

.discount {
    margin-bottom: 10px;
    font-size: 38px;
    font-weight: 700;
    text-align: center;
}

.discount-text {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.discount-text ul {
    padding-left: 1rem;
}

.discount-text ul li {
    text-align: left;
}

.barcode {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 30px;
    background-color: #fff;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.barcode__title {
    margin-bottom: 20px;
    color: #000000;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.barcode__img {
    max-width: 250px;
    width: 100%;
}

.date {
    margin-bottom: 40px;
    font-size: 17px;
}

.link {
    width: 100%;
    height: 48px;
    margin-bottom: 40px;
    border-radius: 16px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    background-color: #845ACA;
    display: flex;
    justify-content: center;
    align-items: center;
}

.disclaimer {
    width: 100%;
    font-size: 11px;
}

.disclaimer ul {
    padding-left: 1rem;
}

.text-nowrap {
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .applink {
        justify-content: flex-end;
    }

    .applink__content {
        max-width: 100%;
        width: 100%;
        margin: 0;
        border-radius: 32px 32px 0 0;
    }
}

@media screen and (max-width: 576px) {
    .logo {
        max-width: 100%;
        height: 120px;
        padding: 20px;
    }
}
