html, body {
  background-color: #E4F9F5;
  margin: 0;
  text-align: center;
  font-family: 'Merriweather', serif;
  height: 100%;
}

h1 {
  color: #66BFBF;
  font-family: 'Merriweather', serif;
  margin: 50px auto 0 auto;
  font-size: 5rem;
  position: relative;
  top: 30px;
}

h2 {
  color: #66BFBF;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
}

p {
  line-height: 2;
  font-size: 1.05rem;
  font-family: 'Merriweather', serif;
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateY(250%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.trans {
  animation: 1.5s ease-out 0s 1 slideInFromLeft;
}

.solace1 {
  width: 150px;
  height: auto;
  margin-right: 10px;
  margin-top: 20px;
  float: right;
}

.skill-row {
  width: 50%;
  margin: 100px auto 100px auto;
  text-align: left;
  line-height: 2;
}

.top-container {
  height: 100%;
}

.ottawa {
  width: 110px;
  height: auto;
  margin-left: 10px;
  float: right;
}

.ottawa1 {
  width: 110px;
  height: auto;
  margin-left: 10px;
  float: left;
}

.solace {
  width: 150px;
  height: auto;
  margin-right: 10px;
  margin-top: 20px;
  float: left;
}

.top-container {
  padding-top: 100px;
}

/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
}

/* Style the header links */
.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* Float the link section to the right */
.header-right {
  float: right;
  margin: 25px 38px auto auto;
}

.about:hover {
  color: #30E3CB;
}

.work {
  background: #11CDD4;
  background-image: -webkit-linear-gradient(top, #11CDD4, #11999E);
  background-image: -moz-linear-gradient(top, #11CDD4, #11999E);
  background-image: -ms-linear-gradient(top, #11CDD4, #11999E);
  background-image: -o-linear-gradient(top, #11CDD4, #11999E);
  background-image: -webkit-gradient(to bottom, #11CDD4, #11999E);
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 100;
  text-shadow: 0 1px 40px #000000;
  border: solid #337FED 1px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

.work:hover {
  border: solid #337FED 1px;
  background: #30E3CB;
  background-image: -webkit-linear-gradient(top, #30E3CB, #2BC4AD);
  background-image: -moz-linear-gradient(top, #30E3CB, #2BC4AD);
  background-image: -ms-linear-gradient(top, #30E3CB, #2BC4AD);
  background-image: -o-linear-gradient(top, #30E3CB, #2BC4AD);
  background-image: -webkit-gradient(to bottom, #30E3CB, #2BC4AD);
  text-decoration: none;
}

.bottom-cloud {
  width: 100%;
  max-width: 225px;
  position: absolute;
  top: 40.3%;
  left: 24.5%;
}

.top-cloud {
  width: 100%;
  max-width: 225px;
  position: absolute;
  right: 26.5%;
  top: 11%;
}

.skyline {
  width: 100%;
  height: auto;
  max-width: 1200px;
  position: absolute;
  bottom: 0%;
  right: 18.5%
}

* {
  box-sizing: border-box;
}

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 100px auto 100px auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: grey;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #66BFBF;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent grey;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent grey transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -16px;
}

/* The actual content */
.content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
}

.content:hover {
  background-color: lightgrey;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
/* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }

/* Full-width containers */
  .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

/* Make sure that all arrows are pointing leftwards */
  .container::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

/* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 15px;
  }

/* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}

.bottom-container {
  background-color: #66BFBF;
  padding: 50px 0 40px;
}

.footer-link {
  color: #11999E;
  font-family: 'Montserrat', sans-serif;
  margin: 10px 20px auto 20px;
  text-decoration: none;
}

.footer-link:hover {
  color: #EAF6F6;
}

.copyright {
  padding: 20px;
  color: #EAF6F6;
  font-size: 0.85rem;
}

@media screen and (max-width: 1680px) {
  .skyline {
    position: absolute;
    bottom: 0%;
    right: 10%;
  }
}

@media screen and (max-width: 1536px) {
  .bottom-cloud {
    position: absolute;
    top: 40.3%;
    left: 18%;
  }
  .top-cloud {
    position: absolute;
    right: 20%;
    top: 12%;
  }
  h1 {
    position: absolute;
    top: 150px;
    left: 350px;
  }
  .skyline {
    max-width: 1000px;
    position: absolute;
    bottom: 0%;
    right: 13%;
  }
}

@media screen and (max-width: 1400px) {
  .skyline {
    position: absolute;
    bottom: 0%;
    right: 7%;
  }
}

@media screen and (max-width: 1366px) {
  h1 {
    position: absolute;
    top: 145px;
    left: 350px;
  }
  .bottom-cloud {
    position: absolute;
    top: 46%;
    left: 18%;
  }
  .skyline {
    max-width: 800px;
    position: absolute;
    bottom: 0%;
    right: 18%
  }
}

@media screen and (max-width: 1280px) {
  .skyline {
    position: absolute;
    bottom: 0%;
    right: 17%
  }
}
