* {
    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;
    }
}

.flex-container {
    display: flex;
    flex-direction: column;
}

.caption {
    text-align: center;
}

.footer {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

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

body,
html {
    height: 100%;
}

.breathe-animation {
    max-width: 250px;
    width: 33vw;
    margin: 50px;
    margin-left: auto;
    margin-right: auto;
}

.about {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 66%;
}

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