/* --- INDEX PAGE --- */

body {
    font-family: 'Open Sans', sans-serif;
}

#index-body {
    padding: 0px;
    margin: 0px;
    font-family: 'Open Sans', sans-serif;
    height: 100%;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

#canvas {
    padding: 0px;
    margin: 0px;
    background: linear-gradient(#ff3300, #0033ff);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#title h1:nth-child(odd) {
    transform: rotate(20deg);
}

#title h1:nth-child(even) {
    transform: rotate(-20deg);
}

#title h1 {
    min-width: 2em;
    font-size: 3em;
    text-shadow: 2px 2px red, -2px -2px blue, 3px -1px green;
}

div#sm-links {
    width: 100%;
    position: absolute;
    bottom: 5%;
    font-size: 5em;
}

.index-link span {
    font: italic 5em 'Amiri', serif;
}

.index-link a:link {
    color:black;
    text-shadow: 2px 2px yellow, -2px -2px cyan, 3px -1px white;
    text-decoration: none;
}

.index-link a:visited {
    color:white;
    text-shadow: 2px 2px yellow, -2px -2px cyan, 3px -1px black;
    text-decoration: none;
}

div#index-link-row {
    width: 100%;
    background-color: magenta;
    mix-blend-mode: multiply;
    top: 40%;
    position: absolute;
}

/* --- PROJECT SUMMARY LIST PAGE --- */

.project-summary {
    margin: 10px;
    border: 1px solid;
    display: flex;
    align-content: center;
}

.project-summary > div {
    margin: 10px;
    flex: 1;
}

.project-img {
    max-height: 250px;
    max-width: 250px;
}

.project-text > h1 {
    font: italic 3em 'Amiri', serif;
    margin-top: 0px;
    margin-bottom: 10px;
}

.page-header {
    display: flex;
    align-content: center;
}

#page-header a:link {
    text-decoration: none;
}

/* --- ABOUT ME PAGE --- */
img.pic-of-me {
    max-width: 500px;
    max-height: 750px;
}

article.aboutme h1 {
    font: italic 3em 'Amiri', serif;
    text-shadow: 2px 2px magenta, -2px -2px cyan;
    margin: 0;
}

article.aboutme {
    text-align: left;
}

img.pic-of-me {
    padding: 2em;
}

section {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}