* {
  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: #fff;
  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;
}
a{
  font-family: playfair-display,serif;
  font-weight: 900;
  font-style: normal;
  font-size: 1.5vw;
  text-align:left;
  color: black;
  letter-spacing: 3px;
  text-decoration: underline;
  list-style:none;
}
 #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: #fff;
   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:60%;
   max-width: 60%;
   margin-left: 150px;
   z-index: 1;
   position: relative;
 }
.about_txt {
  margin-top: 150px;
  margin-bottom: 150px;
  width: 100%;
}
.link {
  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;
}
.footer a:nth-child(1) {
  text-decoration: underline;
}
@media screen and (min-width:1960px) {
  h1 {
    font-size: 192px;
  }
  p {
    font-size: 25px;
  }
  h3 {
    font-size: 28px;
  }
  a {
    font-size: 25px;
  }
  .content {
    max-width: 1800px;
  }
}
@media screen and (max-width:1260px) {
  p {
    font-size: 1.5vw;
  }
  .about img {
    max-width: 70%;
    max-height: 70%;
  }
}
@media screen and (max-width:920px) {
  p {
    font-size: 1.6vw;
  }
}
@media screen and (max-width:760px) {
  p {
    font-size: 14px;
  }
  h3 {
    font-size: 16px;
  }
  h1 {
    font-size: 60px;
    word-wrap: break-word;
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }
  a {
    font-size: 14px;
  }
  li a {
    font-size: 60px;
  }
  .about img {
    max-width: 80%;
    max-height: 80%;
    margin-left: 80px;
  }
}
@media screen and (max-width:500px) {
  h1 {
    font-size: 40px;
  }
  h3 {
    font-size: 14px;
  }
  .content {
    max-width: 90%;
  }
  .about_txt {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .about, .link{
    margin-bottom: 80px;
  }
  .about img {
    max-width: 70%;
    max-height: 70%;
    margin-left: 40px;
  }
}
@media screen and (max-width:376px) {
  .about img {
    max-width: 90%;
    max-height: 90%;
    margin-left: 20px;
  }
}
