* {
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    color: rgb(102, 102, 102);
}

* {
    -webkit-animation: fadein 1.5s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1.5s;
    /* Firefox < 16 */
    -ms-animation: fadein 1.5s;
    /* Internet Explorer */
    -o-animation: fadein 1.5s;
    /* Opera < 12.1 */
    animation: fadein 1.5s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #ffffff;
}

.view {
    transition: opacity 0.4s ease;
    opacity: 1;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
}

.flex-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(20px + env(safe-area-inset-top, 0px)) 20px calc(20px + env(safe-area-inset-bottom, 0px)) 20px;
    box-sizing: border-box;
}

.content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto 0;
    text-align: center;
    width: 100%;
}

.caption {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.5;
}

.footer {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-bottom: max(10px, env(safe-area-inset-bottom, 0px));
}

.footer-text {
    text-decoration: none;
    font-size: small;
    font-weight: lighter;
}

a {
    cursor: pointer;
    text-decoration: underline;
}

.breathe-animation {
    max-width: 250px;
    width: 50vw;
    margin: 0 0 24px 0;
}

.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 24px;
    box-sizing: border-box;
}

.about-text {
    font-family: 'Open Sans', sans-serif;
    color: rgb(102, 102, 102);
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
