@charset "utf-8";
/* CSS Document */

body {
  font-family: 'Open Sans';
  font-size: 18px;
  background: #1e8bc3;
}

body.debug * {
  background: rgba(0,0,0,0.1);
}

main {
  overflow: hidden;
  padding: 15px;
}
.content-left {color:#fff;}
.content-right {
  background: #fff;
  width: 100%;
  padding-bottom: 50px;
}

.logo {
  padding: 50px 0;
}

.rect {
  border: solid 4px #89c4f4;
  position: fixed;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  pointer-events: none;
  z-index: 1;
}
.rect:before {
  content: " ";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: solid 10px #fff;
}

section {
  padding-top: 50px;
}

.down {
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 0.9;
}
.down img {
  width: 64px;
}

.chapter {
  white-space: pre;
  font-size: 16px;
  font-weight: bold;
  /*font-style: italic;*/
  margin: 0;
  padding-bottom: 40px;
  text-transform: uppercase;
}

.year {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}


/* NAME and ROLE */

h1, h2, h3 {
  padding: 0;
  margin: 0;
}

h1 {
}

h1 span {
  display: block;
}

h1 .prefix {
  font-size: 25px;
  line-height: 50px;
  font-weight: bold;
}

h1 .name {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 35px;
  line-height: 35px;
}

h1 .surname {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 45px;
  line-height: 50px;
}

h2.role {
 font-size: 30px;
 font-weight: 400;
 text-transform: uppercase;
 margin: 60px 0;
}

h3.description {
  font-size: 18px;
}


/* LISTS */

ul {
  list-style-type: none;
  padding-left: 0;
}

li {
  padding-left: 40px;
  position: relative;
}

li:before {
  content: "-";
  font-weight: 300;
  font-size: 25px;
  position: absolute;
  left: 0;
  top: -7px;
}

/* DESKTOP */
@media (min-width: 1025px) {
  main {
    overflow: auto;
    padding: 0;
  }

  a {
    color: currentColor;
  }

  .container {
    max-width: 560px;
  }

  .content-left {
    width: 50%;
    height: 100vh;
    position: fixed;
  }

  .content-right {
    width: auto;
    margin-left: 50%;
  }

  .logo {
    position: absolute;
    top: 50%;
    padding: 0;
    width: 100%;
    transform: translateY(-50%);
  }

  section {
    padding-top: 0;
    padding-bottom: 100px;
  }

  section:first-child {
    padding-top: 150px;
  }

  h1 .prefix {
    font-size: 32px;
  }

  h1 .name {
    font-size: 55px;
    line-height: 60px;
  }

  h1 .surname {
    font-size: 70px;
    font-weight: 600;
  }

}