/*Key combination for code folding: alt-1, shift-alt-1 */

* {
    /* for every class following*/
    margin: 0;
    padding: 0;

    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;

    font-style: normal;
    /*    letter-spacing: -1px;*/
    font-variant: normal;
    text-transform: none;
    /*    line-height: 1;*/
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* speak: none; */

    /*        padding shows bullet points!*/
    /*    background-color: transparent;*/

    box-sizing: border-box;

    -webkit-tap-highlight-color: transparent;
}


/*in root: all variables used multiple times*/

:root {
    --width: 33.3333333%;
    --borderRadius: 15px;
}

body {
    height: 100%;
    font-family: "Inter", sans-serif;
    background-color: #FFF3DC;
}

.disableSelection {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome and Opera */
}

/* Page layout for footer */
#page-container {
    position: relative;
    min-height: 100vh;
}

/* So that footer and button don't move up*/
#content-wrap {
    padding-bottom: 25em;
}

.container {
    padding-top: 7em;
}

.headlineStyle {
    background-color: transparent;
    font-size: 5em;
    color: black;
    text-align: center;
    font-weight: 700;
}

.wordAnimationStyle {
    background-color: transparent;
    font-size: 1.4em;
    font-weight: 400;
    color: black;
    text-align: center;
    margin-top: 1.2em;

}

.wordAnimationStyle span {
    font-weight: 400;
}

.appIconImage {
    width: 14em;
    height: 14em;

    margin: auto;
    margin-top: 5em;
    margin-bottom: 5em;
    cursor: pointer;
}

.appIconImage img {
    border-radius: 3.5em;
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.14);
    -webkit-box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.14);
}

img {
    border-radius: var(--borderRadius);
}

.buttonContainer {
    width: 100%;
    height: auto;

    position: absolute;
    bottom: 6em;

    display: flex;
    justify-content: center;
    align-content: center;
}

.button {
    width: 30em;
    height: 5em;
    background-color: rgba(255, 149, 0, 1);
    border: none;
    border-radius: 1em;
    color: white;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-family: "Inter", sans-serif;
}

.button:hover {
    background-color: rgba(255, 149, 0, 0.7);
}

.button h2 {
    font-size: 2em;
    font-weight: 400;
    text-decoration: none;
}

.button:focus {
    outline: none;
}

.footer {
    background-color: transparent;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3.5em;
    display: block;
    justify-content: center;
}

.copyRighted {
    background-color: transparent;
    padding: 0em 0em;
    width: 100%;
    height: 1.5em;
    text-align: center;
    margin-top: 0em;
    margin-bottom: 0em;
}

.copyRighted a {
    text-decoration: none;
    font-size: 0.75em;
    font-weight: 300;
    color: rgb(255, 255, 255, 0.5);
    padding: 0.1em 0.6em;
    text-align: center;
    margin-bottom: 0em;
    color: gray;
}

.footerElements {
    background-color: transparent;
    padding: 0em 0em;
    width: 100%;
    height: 1.5em;
    text-align: center;
    margin-top: 0em;
    margin-bottom: 0em;
}

.footerElements p {
    font-size: 1em;
    color: rgba(255, 149, 0, 1);
    padding: 0.1em 0.5em;
    display: inline;
    margin-bottom: 0em;
}

.footerElements a {
    text-decoration: none;
    font-size: 0.75em;
    font-weight: 400;
    color: black;
    padding: 0.1em 0.6em;
    text-align: center;
    margin-bottom: 0em;
}


/* make keyframes that tell the start state and the end state of our object */

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-webkit-keyframes slideInFromBottom {
    0% {
        transform: translateY(2%);
    }

    100% {
        transform: translateY(0);
    }
}

@-moz-keyframes slideInFromBottom {
    0% {
        transform: translateY(2%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(2%);
    }

    100% {
        transform: translateY(0);
    }
}

.slide-Up {
    opacity: 0;
    /*
    -webkit-animation: 1s ease-out 0s 1 slideInFromBottom;
    -moz-animation: 1s ease-out 0s 1 slideInFromBottom;
    animation: 1s ease-out 0s 1 slideInFromBottom;
*/
    /* make things invisible upon start */
    -webkit-animation: 1s ease-out 0s 1 slideInFromBottom, fadeIn ease-in 1;
    /* call our keyframe named fadeIn, use animation ease-in and repeat it only 1 time */
    -moz-animation: 1s ease-out 0s 1 slideInFromBottom, fadeIn ease-in 1;
    animation: 1s ease-out 0s 1 slideInFromBottom, fadeIn ease-in 1;

    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    animation-delay: 0.5s;

    -webkit-animation-fill-mode: forwards;
    /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

.fade {
    opacity: 0;

    -webkit-animation: fadeIn ease-in 1s;
    -moz-animation: fadeIn ease-in 1s;
    animation: fadeIn ease-in 1s;

    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

@keyframes blink-caret {
    50% {
        border-color: transparent;
    }
}

@-webkit-keyframes blink-caret {
    50% {
        border-color: transparent;
    }
}

.blink-class {
    animation: blink-caret .5s step-end infinite alternate;
    -webkit-animation: blink-caret .5s step-end infinite alternate;

    /*
     -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    animation-delay: 2s;
*/
}

/*
Tablets and iPads
overrides above for width below 699px
*/
@media only screen and (max-width: 699px) {
    body {
        width: 100%;
        float: none;
    }

    .logo img {
        margin-left: 0.5em;
        margin-top: 0.5em;
    }

    .container {
        padding-top: 10em;
    }

    .headlineStyle {
        font-size: 4em;
    }

    .wordAnimationStyle {
        font-size: 1.4em;
    }

    .appIconImage {
        width: 10em;
        height: 10em;
        margin-top: 5em;
        margin-bottom: 0em;
    }

    .appIconImage img {
        border-radius: 2.5em;
    }

    img {
        border-radius: 10px;
    }

    .buttonContainer {
        bottom: 4.5em;
    }

    .button {
        width: 25em;
        height: 4em;
        border-radius: 0.7em;
    }

    .button h2 {
        font-size: 1.8em;
    }

    .footer {
        width: 100%;
        display: block;
        justify-content: center;
        /*height: auto;*/
        height: 3em;
    }

    .footerElements {
        width: 100%;
        font-size: 1em;
    }

    .copyRighted {
        width: 100%;
        text-align: center;
        font-size: 1em;
    }
}


/*
Widest Phone?
iPhone 16 Pro Max: 440ppx
Surface Duo: 540px
*/
@media only screen and (max-width: 549px) {
    .container {
        padding-top: 5em;
    }

    .headlineStyle {
        font-size: 3em;
    }

    .wordAnimationStyle {
        font-size: 1.3em;
    }

    #content-wrap {
        padding-bottom: 15em;
    }

    .button {
        width: 80vw;
    }
}

/*
Small phones:
iPhone SE (3. Gen.), Galaxy Z Fold 5
*/
@media only screen and (max-width: 399px) {
    .button {
        width: 90vw;
    }

    .footerElements {
        font-size: 1em;
    }

    .copyRighted {
        font-size: 0.9em;
    }
}


/*
Min supported width: 320px
Very small phones:
iPhone SE (1. Gen.)
*/
@media only screen and (max-width: 349px) {
    .footerElements {
        font-size: 0.8em;
    }

    .copyRighted {
        font-size: 0.9em;
    }
}