@import url('https://fonts.googleapis.com/css?family=Raleway:200');


body {
  font-family: "Raleway";
  font-size: 16px;
  background: #525564;
}

#header {
  color: #81D4F1;
  width: auto;
  height: auto;
  text-align: center;
  background: none;
}
#content {
  color: white;
  text-align: center;
  background: #35535F;
}
/* Begin css border animation sorcery, props to https://speckyboy.com/css-border-effects/*/
#gradient-box {
  display: flex;
  justify-content: center;
  align-items: left;
  width:40%;
}
.gradient-border {
  --borderWidth: 3px;
  background: #1D1F20;
  position: relative;
  border-radius: var(--borderWidth);
}
.gradient-border:after {
  content: '';
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  border-radius: calc(2 * var(--borderWidth));
  z-index: -1;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
}
@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* end css border sorcery */
#image1 img {
  float: right;
  padding-right: 20%;
  margin: auto;
}

#footer {
text-align: center;
width: auto;
height: auto;
}

.flex-wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
}

#selfie img {
  width: 391.68px;
  height: 522.24px;
  padding-left: 9%;
}

.flex-container {
  color: white;
  background: 767676;
  -moz-column-count: 2;
  -ms-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
  -moz-column-gap: 50%;
  -ms-column-gap:50%;
  -webkit-column-gap: 50%;
  column-gap: 50%;
}
.flex-container>section {
  display: inline-block;
}
.flex-container>article {
  background: rgb(2,0,36);
  background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(11,12,13,1) 48%, rgba(0,212,255,1) 100%);
}

#webography-body {
  color: white;
}

#header-link[href="resume.pdf"] {
