body {
  margin: auto;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

section {
  min-height: 100vh;
}

h2 {
  text-align: center;
  font-size: xx-large;
  margin: 10vh;
}

p {
  text-align: justify;
}

.black {
  background-color: black;
  color: white;
}

.white {
  background-color: white;
  color: black;
}

.logo-pic {
  height: 15vh;
  margin: 3vh;
  ;
}

.content {
  width: 80%;
  margin-left: 10%;
}

#header {
  background-image: url("images/background-profile.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}

#headline {
  text-align: justify;
  width: 25vw;
  margin-left: 20vw;
  font-size: 1.2vw;
}

@keyframes blink {
  0% {
    background-color: orange;
  }

  49% {
    background-color: orange;
  }

  50% {
    background-color: transparent;
  }

  99% {
    background-color: transparent;
  }

  100% {
    background-color: orange;
  }
}

p span.cursor.typing {
  animation: none;
}

p span.cursor {
  display: inline-block;
  background-color: orange;
  margin-left: 0.1rem;
  width: 2px;
  animation: blink 1s infinite;
}

.typed-text {
  color: orange;
  font-size: larger;
}

.btn-flip {
  opacity: 1;
  outline: 0;
  color: white;
  line-height: 40px;
  position: relative;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
  font-family: 'Open Sans';
  text-transform: uppercase;
  width: 100%;
}

.btn-flip:hover:after {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.btn-flip:hover:before {
  opacity: 0;
  transform: translateY(50%) rotateX(90deg);
}

.btn-flip:after {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  color: black;
  display: block;
  transition: 0.5s;
  position: absolute;
  background: white;
  content: attr(data-back);
  transform: translateY(-50%) rotateX(90deg);
  border: 1px solid black;
}

.btn-flip:before {
  top: 0;
  left: 0;
  opacity: 1;
  color: orange;
  display: block;
  padding: 0 30px;
  line-height: 40px;
  transition: 0.5s;
  position: relative;
  background: black;
  content: attr(data-front);
  transform: translateY(0) rotateX(0);
}

.talk-container {
  display: flex;
  width: 80%;
  text-align: center;
  margin-left: 10%;
  margin-bottom: 10%;
  margin-right: 10%;
  margin-top: 5%;
}

@media only screen and (max-width: 1300px) {
  #headline {
    width: 35vw;
    margin-left: 15vw;
    font-size: 1.4vw;
  }

  .talk-container {
    width: 90%;
    margin: 5%;
  }

  .talks {
    width: 100% !important;
    margin-top: 10vh !important;
    margin-left: 0 !important;
  }
}

@media only screen and (max-width: 1000px) {
  #headline {
    width: 50vw;
    margin-left: 25vw;
    font-size: 1.8vw;
  }

  #header {
    background-image: none;
  }

  .talk-container {
    display: block;
  }

  .talks {
    margin-top: 15vh !important;
  }
}

@media only screen and (max-width: 700px) {
  #headline {
    width: 80vw;
    margin-left: 10vw;
    font-size: 1rem;
  }

  .footer-item {
    width: 100% !important;
    display: grid;
    justify-content: center !important;
    text-align: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  footer {
    display: block !important;
  }

  .icon-container {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .disclosure-container {
    width: 80%!important;
    margin-left: 10%!important;
  }
}

div#button-container {
  display: inline-block;
  width: 100%;
}

div#button-container .button {
  margin: 20px;
  position: relative;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  display: inline-block;
}

div#button-container .button .label {
  padding: 10px;
  display: inline-block;
}

div#button-container .button.v14:hover .icon {
  transform: scale(0.9) skew(0deg, 0deg);
}

div#button-container .button.v14:hover .icon:before,
div#button-container .button.v14:hover .icon:after {
  width: 100px;
  transition-delay: 0.4s;
}

div#button-container .button.v14:hover .icon:before {
  left: calc(50% - 50px);
}

div#button-container .button.v14:hover .icon:after {
  right: calc(50% - 50px);
}

div#button-container .button.v14:hover .icon span:before,
div#button-container .button.v14:hover .icon span:after {
  height: 0;
  transition-delay: 0s;
}

div#button-container .button.v14 .label {
  padding: 10px 22px;
}

div#button-container .button.v14 .icon {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: skew(-40deg, 0deg);
  transition: all 0.2s;
}

div#button-container .button.v14 .icon:before,
div#button-container .button.v14 .icon:after {
  content: "";
  height: 1.5px;
  width: 50px;
  position: absolute;
  display: block;
  background: orange;
  transition: all 0.2s;
  transition-delay: 0s;
}

div#button-container .button.v14 .icon:before {
  left: 0;
  top: 0;
}

div#button-container .button.v14 .icon:after {
  right: 0;
  bottom: 0;
}

div#button-container .button.v14 .icon span:before,
div#button-container .button.v14 .icon span:after {
  content: "";
  background: orange;
  position: absolute;
  display: block;
  width: 2px;
  height: 30px;
  transition: all 0.2s;
  transition-delay: 0.4s;
}

div#button-container .button.v14 .icon span:before {
  left: 0;
  top: 0;
}

div#button-container .button.v14 .icon span:after {
  right: 0;
  bottom: 0;
}

.script-description {
  display: flex-box;
  text-align: center;
}

.cv {
  width: 60%;
  margin-left: 20%;
}

footer {
  width: 100%;
  min-height: 30vh;
  background-color: black;
  color: white;
  display: flex;
}

.footer-item {
  width: 33.3vw;
  padding: 3vw;
}

.icon-container {
  display: inline-flex;
  margin-left: 5vh;
  margin-top: 3vh;
  justify-content: center;
}

.icon-container svg path:hover {
  transition: all 200ms ease-in;
  fill: orange !important;
  cursor: pointer;
  height: 2em;
}

.timeline-container {
  width: 60vw;
  margin-bottom: 20%;
  margin-left: 20%;
  border-left: 2px solid black;
}

.timeline-marker {
  width: 16px;
  height: 16px;
  background-color: orange;
  border-radius: 50%;
  margin-left: -8px;
}

.timeline-item {
  width: 100%;
  height: 15%;
  margin-top: -18px;
  margin-left: 5vw;
  margin-bottom: 10%;
}

.disclosure-container {
  width: 50%;
  margin-left: 25%;
}

#shifting {
  color: orange;
  letter-spacing: 5px;
  margin-top: 5vh;
  height: 0;
  margin-bottom: 15vh;
}