
body {
  background-color: #42a5f5;
  color: white;
}
h1, h2, h3 {
  font-weight: 300;
}

a.blueLink{
    color : #42A5F5;
}

.wrapper {
  background-color: #42A5F5;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  font: normal 16px/26px Open Sans Condensed, sans-serif;
  color: #fff;
  padding: 100px 220px 20px;
  box-sizing: border-box;
}

.block {
  z-index: 1;
  position: relative;
}
.block:before {
  content: "";
  position: absolute;
  height: calc(100% - 40px);
  width: 1px;
  background-color: #f2f2f2;
  left: 50%;
  margin-top: 90px;
}

.title {
  font: bold 22px/32px Open Sans Condensed, sans-serif;
  text-align: center;
  padding: 20px;
  transition: all 0.8s ease-in-out;
}



.each-event {
  background-color: #f4f4f4;
  color: #777;
  padding: 15px;
  margin: 60px 20px;
  width: 400px;
  position: relative;
  border-radius: 4px;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
.each-event:before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: -27px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 20px -4px rgba(64, 64, 64, 0.8);
}
.each-event:nth-child(odd) {
  margin-left: calc(50% + 20px);
}
.each-event:nth-child(even) {
  margin-left: calc(50% - 421px);
}
.each-event:nth-child(even):before {
  left: calc(100% + 14px);
}

.title.non-focus {
  transition: all 0.8s ease-in-out;
}

.each-event.non-focus {
  color: #d2d2d2;
  background: #e6e6e6;
  margin-top: 90px;
  transform: rotateZ(45deg);
  transition: all 0.8s ease-in-out;
}
.each-event.non-focus:before {
  opacity: 0;
  background-color: #aaa;
}




h1 {
  position: absolute;
  top: 5px;
  left: 180px;
}
h3 {
  position: absolute;
  top: 50px;
  left: 180px;
}
div.CV {
  position: absolute;
  top: 100px;
  left: 180px;
}
div.me {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100px;
  height: 100px;
  border-radius: 5px;
  border: 10px solid white;
  padding: 10px;
}
div.myLinkGroup {
  display: inline-block;
  position: absolute;
  top: 20px;
  left: calc(100% - 100px);
  width: 50px;
  height: 200px;
  border-radius: 5px;
  border: 10px solid white;
  padding: 10px;
  text-align: center;
}
div.myLinkItem {
  padding-bottom: 25px;
}
img.myPic {
  height: 100px;
  width: 100px;
}

div.lastLine {
  padding: 10px;
  padding-top: 60px;
  position: relative;
  text-align: center;
  width: 100%;
  font-weight: bold;
}
a {
  color: white;
}
div.inline {
  display: inline-block;
}


