html, body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    margin: 0;
}

a {
    color: #4183C4;
    text-decoration: none;
}

a:hover {
    filter: brightness(1.2);
    text-decoration: underline;
}

img {
    max-width: 100%;
}

hr,
.ui.divider {
    margin: 10px auto;
    border-top: 1px solid rgba(34, 36, 38, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

ul, li {
    margin: 0;
    padding: 0;
    list-style: inside;
}

body {
    background: #1B1C1D;
    color: #fefefe;
}

h1 {
    margin: 1rem;
}

body.home {
    display: grid;
    place-items: center;
    height: 100vh;
    max-height: 100%;
}

#banner {
    background: #1B1C1D;
    color: #fefefe;
    height: 80%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
}

#prompt {
    position: absolute;
    font-size: 24px;
    left: 5px;
    bottom: 10px;
    line-height: 1.2;
}

#prompt .cursor {
    content: " ";
    display: inline-block;
    background: green;
    letter-spacing: 2px;
}

#banner h1 {
    font-size: 3rem;
}

.hidden {
    visibility: hidden;
}

.project {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.project > * {
    padding: 20px;
}

body.resume {
    background: #1B1C1D;
}

#resume {
    margin: 30px auto;
}

#resume h1,
#resume h2,
#resume h3,
#resume h4,
#resume h5,
#resume h6 {
    margin: 0;
}

#resume section > h2 {
    margin: 20px auto;
    padding-bottom: 10px;
    border-bottom: 1px solid lightgray;
}

#resume .job {
    margin: 20px auto;
}

#resume .dates {
    font-style: italic;
}

#resume .summary {
    padding: 20px;
}

body.projects {
    font-size: 16px;
    text-align: center;
}

body.projects .container {
    padding: 30px 10px 60px 10px;
    max-width: 1400px;
    margin: 0 auto;
}

body.projects h1.ui.header.huge {
    font-size: 60px;
}

body.projects h1.ui.header.large {
    font-size: 48px;
}

body.projects .summary {
    font-size: 24px;
    margin: 40px auto;
}

body.projects section header {
    max-width: 70%;
    margin: 60px auto 20px;
}


.project__info {
    text-align: justify;
    font-size: 18px;
    line-height: 1.4;
}

@media (min-width: 768px) {

    #banner h1 {
        font-size: 5rem;
    }

    .project > * {
        flex: 0 1 50%;
        padding: 40px;
        max-width: 50%;
    }

    .project {
        flex-direction: row;
    }

    .project__image {
        text-align: right;
    }

    .project:nth-child(2n) {
        flex-direction: row-reverse;
    }

    .project:nth-child(2n) > .project__info {
        /* text-align: right; */
    }

    .project:nth-child(2n) > .project__image {
        text-align: left;
    }

}
