* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
}

.header {
  max-width: 100%;
  height: 8rem;
  border-bottom: 4px solid #7d97ad;
  vertical-align: middle;
  padding: 0.5em;
}

.logo {
  max-width: 20%;
  height: 10vh;
  float: left;
}

.logo img {
  width: 100%;
  height: auto;
}

.person {
  width: 80%;
  float: right;
  line-height: 1.9em;
  padding-top: 0.7em;
}

.my-name {
  font-size: 1.2em;
  text-align: right;
}

.title {
  text-align: right;
  color: #02b3e4;
}

.wrapper {
  border-bottom: 4px solid #7d97ad;
  margin: 0 0 2em 0;
  padding: 0 0 2em 0;
}

#banner {
  width: 100vw;
}

#banner img {
  max-width: 100%;
  width: 100vw;
  margin-top: 1em;
}

.projects {
  padding: 0.5em 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.featured-work h1 {
  color: #7d97ad;
  padding: 0.5em;
  font-size: 2rem;
}

.project {
  width: 100%;
  text-align: center;
  margin-bottom: 1.7rem;
}

.desc-title {
  color: #7d97ad;
  padding: 0.8em 0;
  font-size: 1.4em;
}

.desc-link {
  font-weight: 300;
  font-size: 1.2em;
  padding: 0.7em 0;
  text-decoration: none;
}

.desc-text {
  padding: 0.8em;
  text-align: justify;
}

.play-link {
  text-decoration: none;
  font-weight: bold;
  background-color: #D0EDF7;
  padding: 0.8em 1.2em;
  border-radius: 10px;
  text-align: center;
  line-height: 5em;
}

.footer {
  margin-bottom: 0.2em;
}

.footer-text  {
  padding: 0.5em 0 0.5em 0.5em;
}

a[href^="mailto"] {
  color: #7d97ad;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .my-name,
  .desc-title,
  h1 {
    font-size: 1.8em;
    line-height: 1.9em;
  }

  .desc-text,
  .desc-link,
  .title,
  .footer-text {
    font-size: 1.2em;
  }

  .projects {
    flex-direction: row;
  }

  .project {
    width: 50%;
  }
}

@media screen and (min-width: 1100px) {
  .my-name {
    font-size: 3em;
    line-height: 1.2em;
  }

  .header,
  .wrapper,
  .footer,
  #banner {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  .project {
    width: 33.3%;
  }
}
