/* -- CSS Reset -- */
@import url("https://fonts.googleapis.com/css?family=Roboto");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; 
}

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

ol, ul {
  list-style: none; 
}

.container{
  display:flex;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .container {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 800px) {
  .container {
    flex-direction: column;
  }
}

.text-content{
  flex-basis: 40%;
  padding: 80px;
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 800px) {
  .text-content {
    padding: 40px;
  }
}

.intro {
  font-weight: 600;
  font-size: 60px;
  line-height: 80px;
}

.intro h1{
  font-weight: 400;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 40px;
  color: #018574;
}

.bio {
  padding: 40px 0 40px 0;
}

.img-content {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  height: 100vh;
}

img.profile{
  max-width: 60%;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 800px) {
  img.profile{
    max-width: 100%;
    margin-top: 0px;
  }
}

.bio {
  font-size: 20px;
  line-height: 20px;
}

.split-list{
  width: 30%;
  display: inline-block;
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  .split-list{
    width: 90%;
  }
}

.split-list h3{
  font-weight: 400;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 10px;
}

.split-list ul li {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 10px; 
}