/*  PRELANDER.PRO
    Thematize your prelander by changing the values within the :root brackets. 
*/

:root {
    /*COLOR PALETTE*/
    --primary-color: #3a66ff;
    --secondary-color: rgb(46, 92, 255);
    --button-background-1: var(--primary-color);
    --button-background-2: var(--secondary-color);
    --background-color: #f3f3f3;

    /*FONT STYLING*/
    --font-color-light: #ffffff;
    --font-color-grey: #555;
    --font-color-dark: #101112;
    --font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;

    --font-weight-normal: 400;
    --font-weight-semibold: 500;
    --font-weight-bold: 600;
    --font-weight-extra-bold: 800;

    /*PADDING AND MARGINS*/
    --tile-padding: 30px;
    --tile-margin: 30px;

}

.wrapper {
    width: 100%;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
}

/*SPECIFIC ELEMENT STYLES*/
html,
body {
    color: var(--font-color);
    font-family: var(--font-family);
    background-color: var(--background-color);
    cursor: default;
}

html {
    max-width: 100%;
    overflow-x: hidden;
}

.main {
    flex: 1 0 auto;
}

img {
    width: 100%;
    margin: 1em auto 1em auto;
}

h3 {
    font-weight: var(--font-weight-semibold);
    font-size: 1.6em;
    font-weight: 400;
    margin-top: 0.4em;

}

h4 {
    font-size: 1.2rem;
    color: var(--font-color-grey);
}

p {
    font-size: 1.3em;
    margin-bottom: 1rem;
    font-weight: 400;
}

.color {
    color: var(--primary-color);
}

.tile {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0rem;
    color: var(--font-color);
}

.terms p {
    font-size: 0.8rem;
    opacity: 0.7;
    text-align: center;
    padding: 0.4rem;
    margin: 0;
}

.product-button {
    text-decoration: none;
}

.justify-content-center {
    margin: auto;
}

.end-button {
    background: var(--button-background-1);
    font-weight: var(--font-weight-bold);
    color: var(--font-color-light);
    text-align: center;
    display: inline-block;
    font-size: 1.3em;
    line-height: 1.2rem;
    border-radius: 3rem;
    margin: 0.3rem auto;
    padding: 1.25rem 1rem;
    box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.7), 0 4px 10px rgb(0 0 0 / 20%);
    cursor: pointer;
    min-width: 50%;
    backface-visibility: hidden;
    transition: all 0.1s;

}

.end-button:hover {
    background: var(--button-background-2);
}

.end-button {
    padding: 1rem 1.2rem;
    line-height: 1.5rem;
}

.end-button:hover {
    transform: scale(1.02) translateZ(0);
}

.footer {
    -ms-flex-item-align: stretch;
    align-self: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    color: var(--font-color-grey);
    background-color: var(--background-color);
}

.footer p {
    font-size: 0.8rem;
    font-weight: lighter;
}

/*MOBILE CLASSES*/
@media screen and (max-width:720px) {

    .end-button {
        font-size: 1rem;
        margin: 0.2rem auto;
        padding: 1rem 1rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1rem;
    }

    p {
        font-size: 1em;
        margin-bottom: 1rem;
        font-weight: 400;
    }

    .footer p {
        font-size: 0.6rem;
        margin-bottom: 0.15rem;
    }
}