* {
  margin: 0;
}
body {
  display: block;
  height: 100vh;
}
 ::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}
p {
  font-family: source-code-pro,monospace;
  font-weight: 400;
  font-style: normal;
  font-size: 1.3vw;
  line-height: 1.7;
}
span {
  background-color: black;
  color: #8A0B2D;
  padding-left: 6px;
  padding-right: 6px;
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
h1{
  margin: 0;
  font-family: playfair-display,serif;
  font-weight: 900;
  font-style: normal;
  font-size: 10vw;
  text-align:left;
  line-height: 1.1;
}
h3 {
  font-family: source-code-pro,monospace;
  font-weight: lighter;
  font-style: normal;
  font-size: 1.5vw;
}
 #background {
   width: 100vw;
   height: auto;
   display: flex;
   justify-content:flex-start;
   flex-direction: column;
   align-items: center;
   /* background-color: #F6824F; */
   /* background-color: #D60008; */
   background-color: #8A0B2D;
   overflow: hidden;

   transition-property: background-color;
   transition-duration: 0.3s;
   transition-timing-function: ease-in-out;
 }
 #background > * {
   position:relative;
 }
 .content {
   max-width: 80%;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   align-items: center;
 }
 .header {
   width:100%;
   height: auto;
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   margin-bottom: 20px;
   margin-top: 20px;
 }
 .about {
   padding-top: 40px;
   margin-bottom: 150px;
   display: flex;
   flex-direction: column;
 }
 .about h1{
   z-index: 10;
   position: relative;
 }
 .about img {
   max-height:40%;
   max-width: 40%;
   margin-top: -280px;
   margin-right: 80px;
   z-index: 1;
   position: relative;
   align-self: flex-end;
   object-fit: contain;
 }
.about_txt {
  margin-top: 150px;
  width: 70%;
}
.projects {
  margin-bottom: 150px;
  width: 100%;
}
.projects-wrapper{
  /* display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row; */
  height: auto;
  width: 100%;
  position: relative;

  z-index: 10;
}
.liste-wrapper{
  width: 100%;
  position: relative;
  z-index: 10;
}
.img-wrapper{
  width: 60%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 45%;

}
.preview {
  visibility: hidden;
  position: absolute;
  z-index: 5;
  max-width: 650px;
}
.preview img {
  width:100%;
}
ul {
  list-style-type: none;
  padding: 0;
}
li a{
  font-family: playfair-display,serif;
  font-weight: 900;
  font-style: normal;
  font-size: 8vw;
  text-align:left;
  color: black;
  letter-spacing: 3px;
  text-decoration: none;
  list-style:none;
}
li a:hover, li a:active {
  text-decoration: line-through;
  -webkit-user-select: none;
  -webkit-touch-callout: none
}
hr {
  color: black;
  border-width: 2px;
  border-style: solid;
  margin-bottom: 30px;
}
.resume {
  width: 100%;
  margin-bottom: 150px;
  display: flex;
  flex-direction: column;
}
.entry {
  display: flex;
}
.entry-year {
  margin-right: 64px;
}
.skills {
  margin-bottom: 150px;
}
.footer {
  width:100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 20px;
}
.footer a{
  text-decoration: none;
  color: #000;
}
@media screen and (min-width:1960px) {
  h1 {
    font-size: 192px;
  }
  p {
    font-size: 25px;
  }
  h3 {
    font-size: 28px;
  }
  .content {
    max-width: 1800px;
  }
}
@media screen and (max-width:1260px) {
  p {
    font-size: 1.5vw;
  }
  .about img {
    margin-top: -180px;
    margin-right: 80px;
  }
}
@media screen and (max-width:920px) {
  p {
    font-size: 1.6vw;
  }
  .about_txt {
    width: 100%;
  }
  .entry-year {
    margin-right: 32px;
  }
  .about img {
    max-width: 50%;
    max-height: 50%;
    margin-top: -120px;
  }
}
@media screen and (max-width:760px) {
  p {
    font-size: 14px;
  }
  h3 {
    font-size: 16px;
  }
  h1 {
    font-size: 60px;
  }
  li a {
    font-size: 60px;
  }
  .entry {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .about img {
    max-width: 50%;
    max-height: 50%;
    margin-top: -120px;
  }
  .entry-year  p {
    font-weight: 900;
  }
}
@media screen and (max-width:500px) {
  h1 {
    font-size: 40px;
  }
  li a {
    font-size: 40px;
  }
  h3 {
    font-size: 14px;
  }
  .content {
    max-width: 90%;
  }
  .about_txt {
    margin-top: 80px;
  }
  .about, .projects, .resume, .skills {
    margin-bottom: 80px;
  }
  .about img {
    max-width: 70%;
    max-height: 70%;
    margin-top: -120px;
    margin-right: 40px;
  }
}
