html {
    box-sizing: border-box;
}

*, 
*:before, 
*:after {
  box-sizing: inherit;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
    padding: 0;
}

.wrapper {
    overflow: hidden;
}

header {
    background: linear-gradient(90deg, #782c74, #13a8a6);
    overflow: auto;
    width: 100%;
    font-size: 1.25em;
    text-transform: uppercase;
    color: #f7f7f7;
    padding: 1em 3em;
}
header a {
    text-decoration: none;
    color: #f7f7f7;
}
header a:hover {
    text-decoration: underline;
    color: #fff;
}
nav ul {
    margin-top: 1em;
}
nav li {
    padding: .75em;
}

h1, h2, h3, p {
    margin-block-start: .3em;
    margin-block-end: .3em;
}
h1, h2 {
    text-transform: uppercase;
}
h1, h3 {
    font-weight: 100;
}
p {
    line-height: 1.5em;
    padding-bottom: .5em;
}

aside {
    background: linear-gradient(90deg, #782c74, #13a8a6);
    color: #fff;
    padding: 1em;
}

aside img {
    filter: opacity(.5) grayscale(.75);
    transition: .25s ease-out;
}

aside img:hover {
    filter: opacity(1) grayscale(0);
}

.bgimg {
    background-image: url('../images/self.jpg');
    background-position: center;
    background-size: cover;
    height: 300px;
}

.bgimg p {
    color: #fff;
    font-size: 1.5em;
    text-align: center;
}

@keyframes blurry {
    0% {
        background-position: bottom;
        filter: blur(20px) opacity(.5) grayscale(1);
        transform: scale(.8)
    }
    20% {
        filter: blur(15px) opacity(.75) grayscale(.25);
        transform: scale(.85)
    }
    50% {
        filter: blur(15px) opacity(1) grayscale(0);
        transform: scale(.95)
    }
    100% {
        background-position: center;
        filter: none;
        transform: scale(1)
    }
}

#blurry {
    animation: blurry 2s linear forwards 1;
}

.portfolio-pic {
    max-width: 300px;
    margin: 0 1.5em 1.5em 0;
}

.portfolio-pic img {
    transform: scale(.75);
    transition: .5s ease-in-out;
}

.portfolio-pic img:hover {
    transform: scale(1);
}

.order-pic {
    transform: rotate(3deg);
    transform-origin: top left;
    filter: drop-shadow(4px 4px 2px #782c74);
}

.svg {
    fill: #782c74;
    transform: scale(.75);
}

@keyframes hello {
    from {
        fill: #782c74;
        transform: scale(1);
    }
    to {
        fill: #13a8a6;
        transform: scale(.75);
    }
}

.svg-letter {
    animation: hello 2s linear alternate infinite;
}
.svg-2 {
    animation-delay: .1s;
}
.svg-3 {
    animation-delay: .2s;
}
.svg-4 {
    animation-delay: .3s;
}
.svg-5 {
    animation-delay: .4s;
}
.svg-6 {
    animation-delay: .5s;
}

.svg-line {
    animation: hello 2s linear alternate infinite;
}


.resume ul {
    list-style-type: square;
}
.resume li {
    padding-bottom: .5rem;
}

/* append "(PDF)" to any links containing ".pdf" */
a[href$=".pdf"]::after {
    content: " (PDF)";
}

/* link gradation on focus */
.wrapper a:hover {
    background: linear-gradient(90deg, #782c74, #13a8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer {
    background: linear-gradient(90deg, #782c74, #13a8a6);
    width: 100%;
    color: #d4d4d4;
    padding: 1em 3em;
}