/**
 * Jeffrey Worley
 *
 * this is the css to handle animations for index.html
 */
body {
    text-align: center;
    margin-right: 5%;
    margin-left: 5%;
    word-wrap: break-word;
    background-color: black;
    color: white;
    scroll-behavior: smooth;
}

img {
    max-width: 45%;
    height: auto;
    border-radius: 5px;
    margin: 1em;
}

article {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    height: 120vh;
    align-items: center;
}

h1 {
    margin-top: 0px;
    font-size: 8em;
    color: #8357e4ff;
    width: 100%;
}

h2 {
    font-size: 3em;
    text-align: left;
}

p, ul {
    text-align: left;
    font-size: 16pt;
}

a {
    text-decoration-color: cyan;
    color: cyan;
}

.article-content {
    width: 50%;
    align-items: flex-start;
}

.flex-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/*
    animation details from https://cssanimation.rocks/scroll-animations/
 */
.inline-photo {
    border: 1em solid #fff;
    border-bottom: 4em solid #fff;
    border-radius: .25em;
    margin: 2em auto;
    transform: translateY(5em) rotateZ(-5deg);
    will-change: transform, opacity;
}

.inline-logo, .inline-photo {
    opacity: 0;
    transition: transform 2s .25s cubic-bezier(0,1,.3,1),
    opacity 1s .25s ease-in;
    will-change: transform, opacity;
}

.inline-logo {
    transform: translateY(5em);
}

.inline-photo.is-visible {
    transform: rotateZ(-2deg);

}

.inline-logo.is-visible, .inline-photo.is-visible{
    opacity: 1;
}

#welcome {
    height: 100vh;
    width: 100%;
}

#homepage-illustration {
    width: 90%;
}

#logos img {
    width: 350px;
}