/**site**/

/**Colors**/

:root {
  --dark-red: #800;
  --dark-olive: #3F5248;
  --background: #D0D0D0;
  --black: black;
  --off-yellow: #f6E4AF;
  --light-olive: rgba(152, 168, 135, 0.5);
  --green-gray: rgba(255, 255, 255, 0.5);
  --gray-yellow: rgba(234,237,186, 0.5);
  --light-olive-solid: rgba(152, 168, 135, 1);
  --white: white;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background-color: var(--background);
  height: 100vh;
  width: 100vw;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: var(--dark-red);
}

a:active {
  color: var(--dark-red);
}

*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

.baseImage {
  background-size: contain;
  background-repeat: no-repeat;
}

.baseImageCircleBig-home{
mix-blend-mode: soft-light;
background-size: contain;
background-repeat: no-repeat;
}

/**Typography -- font sizes are screen-size dependent**/

h1 {
  font-family: "montserrat";
  font-weight: 300;
  white-space: pre;
  text-align: center;
  color: var(--dark-red);
  margin: 0px 0px 0px 0px;
}

h2 {    
  font-family: "oswald";
  font-weight: 400;
  white-space: pre;
  text-align: center;
  justify-content: center;
  color: var(--off-yellow);
  margin: 0px 0px 0px 0px;
  z-index: 40;
}

h3 {
  font-family: "montserrat";
  font-weight: 400;
  white-space: pre;
  text-align: center;
  color: var(--dark-olive);
  margin: 8px 0px 0px 0px;
}

h2.blockTitle {
  font-family: "montserrat";
  font-weight: 400;
  white-space: normal;
  hyphens: auto;
  color: var(--off-yellow);
  text-align: left;
  margin: 8px 8px 8px 10px;
}

h2.blockTitleDark {
  font-family: "montserrat";
  font-weight: 400;
  white-space: normal;
  hyphens: auto;
  color: var(--dark-olive);
  text-align: left;
  margin: 8px 8px 8px 10px;
}

p.blockText {
  font-family: "oswald";
  font-weight: 200;
  hyphens: auto;
  color:var(--white);
  margin: 8px 8px 8px 10px;
}

p.blockTextDark {
  font-family: "oswald";
  font-weight: 200;
  hyphens: auto;
  color: var(--black);
  margin: 8px 8px 8px 10px;
}

p.caption {
  font-family: "oswald";
  font-weight: 200;
  hyphens: auto;
  color: var(--black);
  margin: 16px 12px 8px 12px;
}

.brss {
  font-size: 1.4vw;
  font-weight: 600;
  color: var(--dark-red);
}

.skinny {
  font-weight: 300;
  font-size: 1rem;
}

/**styles related to charts and used by d3**/

.container{
  height:1080px;
}

.chart{
  background-color:#F9FAD8;
  padding-left: 0px;
}

.title{
  font-family: montserrat;
  font-weight: bolder;
  font-size: 20px;
  color:#3F5248;
}

.domain{
  visibility: hidden;
}

.tick{   
  font-family: montserrat;
  font-weight: bolder;
  color:#3F5248;
  font-size: 13px;
}

.ability{
  fill:#E4E5D5;
}

.enjoyment{
  fill:#3F5248;
}

.creativity{
  fill:red;
}

.polish{
  fill: var(--dark-red);
}

.labelability{
  font-family: montserrat;
  font-weight: bolder;
  font-size: 13px;
  fill:#800;
}

.labelenjoyment{
  font-family: montserrat;
  font-weight: bolder;
  font-size: 13px;
  fill:white;
}

.labelcreativity{
  font-family: montserrat;
  font-weight: bolder;
  font-size: 13px;
  fill:white;
}

.labelpolish{
  font-family: montserrat;
  font-weight: bolder;
  font-size: 13px;
  fill: var(--white);
}

.skill{
  display: flex;
  flex-direction: row;
}

/**General Layout**/

#SiteContainer {
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  display: grid;
}

  /** for browsers less than 660px **/

@media only screen and (max-width: 660px) {
 /**Typography modified for screensize**/

 h1{
  font-size: 27px;
  line-height: 28px;
 }

 h2{
  font-size: 20px;
  line-height: 21px;
 }
 
 #writeUp p {
  font-size: 16px;
  line-height: 19px;
  font-family: "oswald";
  font-weight: 300;
  hyphens: auto;
  color: var(--black);
  }
  
  .sideCarText p {
    font-size: 14px;
    line-height: 16px;
    font-family: "oswald";
    font-weight: 200;
    hyphens: auto;
    color: var(--black);
  }

  /**Layout**/

#SiteContainer {
    max-width: 960px; 
    height: 100vh;
    grid-template-columns: repeat(56, 1fr);   
    grid-template-rows: repeat(100, 1fr);
    }

/**BaseImages**/

#baseImages {
  grid-column-start: 1;
  grid-column-end: span 56;
  grid-row-start: 1;
  grid-row-end: span 100;
  background-color: #D0D0D0;
  display: grid;
  grid-template-columns: repeat(56, 1fr);   
  grid-template-rows: repeat(100, 1fr);
  margin: 0px 0px 0px 0px;
}

#baseImageCircleBig {
  grid-column-start: 2;
  grid-column-end: span 40;
  grid-row-start: 32;
  grid-row-end: span 40;
  background-image: url(images-ls/bigCircle.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 0px 0px 0px 0px;
}

#baseImageCircleSmall {
  grid-column-start: 36;
  grid-column-end: span 20;
  grid-row-start: 64;
  grid-row-end: span 20;
  background-image: url(images-ls/smallCircle.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0px 0px 0px 0px;
  z-index: 1;
}

#bigLogo {
grid-column-start: 10;
grid-column-end: span 29;
grid-row-start: 1;
grid-row-end: span 29;
background-image: url(images-ls/bigLogo.png);
background-size: contain;
background-repeat: no-repeat;
z-index: 1;
margin: 0px 0px 0px 0px;
}

#smallLogo {
grid-column-start: 48;
grid-column-end: span 8;
grid-row-start: 86;
grid-row-end: span 8;
background-image: url(images-ls/smallLogo.svg);
background-size: contain;
background-repeat: no-repeat;
z-index: 20;
margin: 0px 0px 0px 0px;
}

#redDot {
grid-column-start: 40;
grid-column-end: span 3;
grid-row-start: 89;
grid-row-end: span 3;
background-image: url(images-ls/reddot.png);
background-size: contain;
background-repeat: no-repeat;
z-index: 18;
margin: 0px 0px 0px 0px;
display: none;
}

#hamburger {
  grid-column-start: 48;
  grid-column-end: span 2;
  grid-row-start: 3;
  grid-row-end: span 2;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 10px 0px 0px 0px;
  z-index: 1000;
}

 /* Dropdown Button */
 .dropbtn {
  background-color:#800;
  opacity: 0;
  padding: 8px;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #800;
  z-index: 1000;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1000;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  margin: 0px 0px 0px -160px;
  background-color: #f1f1f1;
  min-width: 240px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  opacity: .9;
  z-index: 1000;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #800;
  font-family: montserrat;
  font-size: .9rem;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  z-index: 1000;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display: flex;
  flex-direction: column;
  z-index: 1000;
} 

    /**baseText**/
    /**Headlines**/

    #baseText {
      grid-column-start: 1;
      grid-column-end: span 56;
      grid-row-start: 1;
      grid-row-end: span 100;
      z-index: 10;
      display: grid;
      grid-template-columns: repeat(56, 1fr);   
      grid-template-rows: repeat(100, 1fr);
    }
  
  #mainTitle {
      grid-column-start: 5;
      grid-column-end: span 18;
      grid-row-start: 91;
      grid-row-end: span 2;
      z-index: 4;
    }

    #subTitle {
      grid-column-start: 6;
      grid-column-end: span 18;
      grid-row-start: 95;
      grid-row-end: span 2;
      z-index: 4;
    }

    #quoteBox {
      grid-column-start: 36;
      grid-column-end: span 20;
      grid-row-start: 30;
      grid-row-end: span 70; 
      margin: 0px 0px 0px 0px;
      -ms-overflow-style: none; 
      scrollbar-width: none; 
      z-index: 16;
      overflow-y: scroll;
      overflow-x: none;
      scroll-behavior: smooth;
      display: flex;
      flex-direction: column;
    }

    #quote {
      font-family: "montserrat";
      font-size: 17px;
      font-weight: 100;
      line-height: 18px;
      font-style: italic;
      color: #3F5248;
      line-height: 24px;
      background-color: rgba(255,255,255,0.5);
      background-size: contain;
      background-repeat: no-repeat;
      padding: 20px 20px 20px 20px;
      margin: -80px 0px 0px 0px;
      z-index: 1;
    }
  
    .quotationMark {
      font-size: 120px;
      line-height: 130px;
      font-weight: bolder;
      Color:#F9FAD8;
      Opacity: .7;
      }

    #frontQuotationMark{
      z-index: 2;
    }
    #backQuotationMark{
      margin: -40px 0px 0px 80px;
      z-index: 20;
    }
/**scrollable section with charts and text avobe charts**/

#scrollBox{
  grid-column-start: 2;
  grid-column-end: span 52;
  grid-row-start: 30;
  grid-row-end: span 60;
  margin: 0px 0px 0px 0px;
  -ms-overflow-style: none; 
  scrollbar-width: none; 
  z-index: 16;
  overflow-y: scroll;
  overflow-x: none;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
} 

#writeUp{
  padding: 0px 36% 0px 0px;
  margin: 20px 0px 40px 0px;
  z-index: 10;
}

#toolsCharts { 
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  z-index: 10;
}

.skill{
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    align-items: center;
    margin: 0px 0px 0px 0px;
    z-index: 10;
}

.chart{
    width: 100%;
    margin: 4px 4px 4px 1px;
    z-index: 10;
}

.sideCarText{
    width: 100%;
    min-width: 100%;
    height: auto;
    background-color: rgba(255,255,255,0.8);
    hyphens: auto;
    color: black;
    z-index: 10;    
    padding: 14px 4px 10px 10px;
    margin: 0px 0px 12px 0px;
}

.sideCarText p {
  font-size: .8rem;
  line-height: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}
}

  /** for browsers between 660px and 960px **/

@media only screen and (min-width: 660px) and (max-width: 960px) {

  #writeUp p {
    font-size: 16px;
    line-height: 19px;
    font-family: "oswald";
    font-weight: 300;
    hyphens: auto;
    color: var(--black);
    }
    
    .sideCarText p {
      font-size: 14px;
      line-height: 16px;
      font-family: "oswald";
      font-weight: 200;
      hyphens: auto;
      color: var(--black);
    }
  
    /**Layout**/
  
  #SiteContainer {
      max-width: 960px; 
      height: 100vh;
      grid-template-columns: repeat(56, 1fr);   
      grid-template-rows: repeat(100, 1fr);
      }
  
  /**BaseImages**/
  
  #baseImages {
    grid-column-start: 1;
    grid-column-end: span 56;
    grid-row-start: 1;
    grid-row-end: span 100;
    background-color: #D0D0D0;
    display: grid;
    grid-template-columns: repeat(56, 1fr);   
    grid-template-rows: repeat(100, 1fr);
    margin: 0px 0px 0px 0px;
  }
  
  #baseImageCircleBig {
    grid-column-start: 2;
    grid-column-end: span 40;
    grid-row-start: 32;
    grid-row-end: span 40;
    background-image: url(images-ls/bigCircle.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    margin: 0px 0px 0px 0px;
  }
  
  #baseImageCircleSmall {
    grid-column-start: 36;
    grid-column-end: span 20;
    grid-row-start: 64;
    grid-row-end: span 20;
    background-image: url(images-ls/smallCircle.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0px 0px 0px 0px;
    z-index: 1;
  }
  
  #bigLogo {
  grid-column-start: 19;
  grid-column-end: span 29;
  grid-row-start: 1;
  grid-row-end: span 29;
  background-image: url(images-ls/bigLogo.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 0px 0px 0px 0px;
  }
  
  #smallLogo {
  grid-column-start: 48;
  grid-column-end: span 11;
  grid-row-start: 88;
  grid-row-end: span 11;
  background-image: url(images-ls/smallLogo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 0px 0px 0px 0px;
  }
  
  #redDot {
  grid-column-start: 40;
  grid-column-end: span 3;
  grid-row-start: 89;
  grid-row-end: span 3;
  background-image: url(images-ls/reddot.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 18;
  margin: 0px 0px 0px 0px;
  }
  
  #hamburger {
    grid-column-start: 40;
    grid-column-end: span 2;
    grid-row-start: 3;
    grid-row-end: span 2;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    margin: 10px 0px 0px 0px;
    z-index: 1000;
  }
  
   /* Dropdown Button */
   .dropbtn {
    background-color:#800;
    opacity: 0;
    padding: 8px;
    border: none;
    cursor: pointer;
    z-index: 1000;
  }
  
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
    background-color: #800;
    z-index: 1000;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
    z-index: 1000;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 240px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    opacity: .9;
    z-index: 1000;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: #800;
    font-family: montserrat;
    font-size: .9rem;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    z-index: 1000;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {
    display: flex;
    flex-direction: column;
    z-index: 1000;
  } 
  
  
      /**baseText**/
      /**Headlines**/
  
     #baseText {
        grid-column-start: 1;
        grid-column-end: span 56;
        grid-row-start: 1;
        grid-row-end: span 100;
        z-index: 10;
        display: grid;
        grid-template-columns: repeat(56, 1fr);   
        grid-template-rows: repeat(100, 1fr);
      }
    
    #mainTitle {
        grid-column-start: 11;
        grid-column-end: span 18;
        grid-row-start: 91;
        grid-row-end: span 2;
        z-index: 4;
      }
  
      #subTitle {
        grid-column-start: 12;
        grid-column-end: span 18;
        grid-row-start: 96;
        grid-row-end: span 2;
        z-index: 4;
      }
  
      #quoteBox {
        grid-column-start: 38;
        grid-column-end: span 15;
        grid-row-start: 30;
        grid-row-end: span 40; 
        margin: 0px 0px 0px 0px;
        -ms-overflow-style: none; 
        scrollbar-width: none; 
        z-index: 16;
        overflow-y: scroll;
        overflow-x: none;
        scroll-behavior: smooth;
        display: flex;
        flex-direction: column;
      }
  
      #quote {
        font-family: "montserrat";
        font-size: 17px;
        font-weight: 100;
        line-height: 18px;
        font-style: italic;
        color: #3F5248;
        line-height: 24px;
        background-color: rgba(255,255,255,0.5);
        background-size: contain;
        background-repeat: no-repeat;
        padding: 20px 20px 20px 20px;
        margin: -80px 0px 0px 0px;
        z-index: 1;
      }
    
      .quotationMark {
        font-size: 120px;
        line-height: 130px;
        font-weight: bolder;
        Color:#F9FAD8;
        Opacity: .7;
        }
  
      #frontQuotationMark{
        z-index: 2;
      }
      #backQuotationMark{
        margin: -40px 0px 0px 120px;
        z-index: 20;
      }
  
    /**scrollable section with base text**/ 
  
  #scrollBox{
    grid-column-start: 2;
    grid-column-end: span 52;
    grid-row-start: 30;
    grid-row-end: span 60;
    margin: 0px 0px 0px 0px;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
    z-index: 16;
    overflow-y: scroll;
    overflow-x: none;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
  } 
  
  #writeUp{  
    margin: 20px 33% 10px 10px;
    z-index: 10;
  }
  
  #toolsCharts { 
    display: flex;
    flex-wrap: wrap;
    z-index: 10;
    margin: 0px 0px 0px 10px;
  }
  
  .skill{
      display: flex;
      flex-direction: row;
      height: auto;
      margin: 0px 6px 0px 0px;
      z-index: 10;
  }
  
  .chart{
      margin: 4px 0px 4px 4px;
      z-index: 10;
  }
  
  .sideCarText{
      width: 140px;
      height: auto;
      background-color: rgba(255,255,255,0.8);
      z-index: 10; 
      padding: 36px 14px 4px 14px;
      margin: 4px 4px 4px 0px;
  }

}

/** for browsers between 960px and 1320px **/

@media only screen and (min-width: 960px) and (max-width: 1320px) {

  #writeUp p {
    font-size: 16px;
    line-height: 19px;
    font-family: "oswald";
    font-weight: 300;
    hyphens: auto;
    color: var(--black);
    }
    
    .sideCarText p {
      font-size: 14px;
      line-height: 16px;
      font-family: "oswald";
      font-weight: 200;
      hyphens: auto;
      color: var(--black);
    }
  
    /**Layout**/
  
  #SiteContainer {
      max-width: 1320px; 
      height: 100vh;
      grid-template-columns: repeat(100, 1fr);   
      grid-template-rows: repeat(56, 1fr);
      }
  
  /**BaseImages**/
  
  #baseImages {
    grid-column-start: 1;
    grid-column-end: span 100;
    grid-row-start: 1;
    grid-row-end: span 56;
    background-color: #D0D0D0;
    display: grid;
    grid-template-columns: repeat(100, 1fr);   
    grid-template-rows: repeat(56, 1fr);
    margin: 0px 0px 0px 0px;
  }
  
  #baseImageCircleBig {
    grid-column-start: 4;
    grid-column-end: span 35;
    grid-row-start: 20;
    grid-row-end: span 35;
    background-image: url(images-ls/bigCircle.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    margin: 0px 0px 0px 0px;
  }
  
  #baseImageCircleSmall {
    grid-column-start: 48;
    grid-column-end: span 16;
    grid-row-start: 30;
    grid-row-end: span 16;
    background-image: url(images-ls/smallCircle.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0px 0px 0px 0px;
    z-index: 1;
  }
  
  #bigLogo {
  grid-column-start: 34;
  grid-column-end: span 22;
  grid-row-start: 1;
  grid-row-end: span 22;
  background-image: url(images-ls/bigLogo.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 0px 0px 0px 0px;
  }
  
  #smallLogo {
  grid-column-start: 76;
  grid-column-end: span 7;
  grid-row-start: 48;
  grid-row-end: span 7;
  background-image: url(images-ls/smallLogo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 0px 0px 0px 0px;
  }
  
  #redDot {
  grid-column-start: 58;
  grid-column-end: span 3;
  grid-row-start: 48;
  grid-row-end: span 3;
  background-image: url(images-ls/reddot.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 18;
  margin: 0px 0px 0px 0px;
  }
  
  #hamburger {
    grid-column-start: 76;
    grid-column-end: span 3;
    grid-row-start: 3;
    grid-row-end: span 3;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    margin: 10px 0px 0px 0px;
    z-index: 1000;
  }
  
   /* Dropdown Button */
   .dropbtn {
    background-color:#800;
    opacity: 0;
    padding: 8px;
    border: none;
    cursor: pointer;
    z-index: 1000;
  }
  
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
    background-color: #800;
    z-index: 1000;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
    z-index: 1000;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 240px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    opacity: .9;
    z-index: 1000;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: #800;
    font-family: montserrat;
    font-size: .9rem;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    z-index: 1000;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {
    display: flex;
    flex-direction: column;
    z-index: 1000;
  } 
  
  
      /**baseText**/
      /**Headlines**/
  
     #baseText {
        grid-column-start: 1;
        grid-column-end: span 100;
        grid-row-start: 1;
        grid-row-end: span 56;
        z-index: 10;
        display: grid;
        grid-template-columns: repeat(100, 1fr);   
        grid-template-rows: repeat(56, 1fr);
      }
    
    #mainTitle {
        grid-column-start: 34;
        grid-column-end: span 18;
        grid-row-start: 50;
        grid-row-end: span 2;
        z-index: 4;
      }
  
      #subTitle {
        grid-column-start: 35;
        grid-column-end: span 18;
        grid-row-start: 53;
        grid-row-end: span 2;
        z-index: 4;
      }
  
      #quoteBox {
        grid-column-start: 68;
        grid-column-end: span 18;
        grid-row-start: 14;
        grid-row-end: span 20; 
        display: flex;
        flex-direction: column;
      }
  
      #quote {
        font-family: "montserrat";
        font-size: 17px;
        font-weight: 100;
        line-height: 18px;
        font-style: italic;
        color: #3F5248;
        line-height: 24px;
        background-color: rgba(255,255,255,0.5);
        background-size: contain;
        background-repeat: no-repeat;
        padding: 20px 20px 20px 20px;
        margin: -100px 0px 0px 0px;
        z-index: 1;
      }
    
      .quotationMark {
        font-size: 220px;
        line-height: 180px;
        font-weight: bolder;
        Color:#F9FAD8;
        Opacity: .7;
        }
  
      #frontQuotationMark{
        z-index: 2;
      }
      #backQuotationMark{
        margin: -30px 0px 0px 100px;
        z-index: 20;
      }
  
    /**scrollable section with base text**/ 
  
  #scrollBox{
    grid-column-start: 4;
    grid-column-end: span 90;
    grid-row-start: 21;
    grid-row-end: span 28;
    margin: 0px 0px 0px 0px;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
    z-index: 16;
    overflow-y: scroll;
    overflow-x: none;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
  } 
  
  #writeUp{  
    columns: 2;
    margin: 20px 33% 10px 40px;
    z-index: 10;
  }
  
  
  #toolsCharts { 
    display: flex;
    flex-wrap: wrap;
    z-index: 10;
    margin: 0px 0px 0px 40px;
  }
  
  .skill{
      display: flex;
      flex-direction: row;
      height: auto;
      margin: 0px 6px 0px 0px;
      z-index: 10;
  }
  
  .chart{
      margin: 4px 0px 4px 4px;
      z-index: 10;
  }
  
  .sideCarText{
      width: 140px;
      height: auto;
      background-color: rgba(255,255,255,0.8);
      z-index: 10; 
      padding: 36px 14px 4px 14px;
      margin: 4px 4px 4px 0px;
  }
}

/** for browsers larger than 1320px **/

@media only screen and (min-width: 1320px) {

  
#writeUp p {
  font-size: 16px;
  line-height: 19px;
  font-family: "oswald";
  font-weight: 300;
  hyphens: auto;
  color: var(--black);
  }
  
  .sideCarText p {
    font-size: 14px;
    line-height: 16px;
    font-family: "oswald";
    font-weight: 200;
    hyphens: auto;
    color: var(--black);
  }

  /**Layout**/

#SiteContainer {
    max-width: 1920px; 
    height: 100vh;
    grid-template-columns: repeat(100, 1fr);   
    grid-template-rows: repeat(56, 1fr);
    }

/**BaseImages**/

#baseImages {
  grid-column-start: 1;
  grid-column-end: span 100;
  grid-row-start: 1;
  grid-row-end: span 56;
  background-color: #D0D0D0;
  display: grid;
  grid-template-columns: repeat(100, 1fr);   
  grid-template-rows: repeat(56, 1fr);
  margin: 0px 0px 0px 0px;
}

#baseImageCircleBig {
  grid-column-start: 4;
  grid-column-end: span 35;
  grid-row-start: 20;
  grid-row-end: span 35;
  background-image: url(images-ls/bigCircle.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 0px 0px 0px 0px;
}

#baseImageCircleSmall {
  grid-column-start: 48;
  grid-column-end: span 16;
  grid-row-start: 30;
  grid-row-end: span 16;
  background-image: url(images-ls/smallCircle.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0px 0px 0px 0px;
  z-index: 1;
}

#bigLogo {
grid-column-start: 34;
grid-column-end: span 22;
grid-row-start: 1;
grid-row-end: span 22;
background-image: url(images-ls/bigLogo.png);
background-size: contain;
background-repeat: no-repeat;
z-index: 1;
margin: 0px 0px 0px 0px;
}

#smallLogo {
grid-column-start: 76;
grid-column-end: span 7;
grid-row-start: 48;
grid-row-end: span 7;
background-image: url(images-ls/smallLogo.svg);
background-size: contain;
background-repeat: no-repeat;
z-index: 1;
margin: 0px 0px 0px 0px;
}

#redDot {
grid-column-start: 58;
grid-column-end: span 3;
grid-row-start: 48;
grid-row-end: span 3;
background-image: url(images-ls/reddot.png);
background-size: contain;
background-repeat: no-repeat;
z-index: 18;
margin: 0px 0px 0px 0px;
}

#hamburger {
  grid-column-start: 76;
  grid-column-end: span 3;
  grid-row-start: 3;
  grid-row-end: span 3;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 10px 0px 0px 0px;
  z-index: 1000;
}

 /* Dropdown Button */
 .dropbtn {
  background-color:#800;
  opacity: 0;
  padding: 8px;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #800;
  z-index: 1000;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1000;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 240px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  opacity: .9;
  z-index: 1000;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #800;
  font-family: montserrat;
  font-size: .9rem;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  z-index: 1000;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display: flex;
  flex-direction: column;
  z-index: 1000;
} 


    /**baseText**/
    /**Headlines**/

   #baseText {
      grid-column-start: 1;
      grid-column-end: span 100;
      grid-row-start: 1;
      grid-row-end: span 56;
      z-index: 10;
      display: grid;
      grid-template-columns: repeat(100, 1fr);   
      grid-template-rows: repeat(56, 1fr);
    }
  
  #mainTitle {
      grid-column-start: 34;
      grid-column-end: span 18;
      grid-row-start: 50;
      grid-row-end: span 2;
      z-index: 4;
    }

    #subTitle {
      grid-column-start: 35;
      grid-column-end: span 18;
      grid-row-start: 53;
      grid-row-end: span 2;
      z-index: 4;
    }

    #quoteBox {
      grid-column-start: 68;
      grid-column-end: span 18;
      grid-row-start: 14;
      grid-row-end: span 20; 
      display: flex;
      flex-direction: column;
    }

    #quote {
      font-family: "montserrat";
      font-size: 17px;
      font-weight: 100;
      line-height: 18px;
      font-style: italic;
      color: #3F5248;
      line-height: 24px;
      background-color: rgba(255,255,255,0.5);
      background-size: contain;
      background-repeat: no-repeat;
      padding: 20px 20px 20px 20px;
      margin: -100px 0px 0px 0px;
      z-index: 1;
    }
  
    .quotationMark {
      font-size: 220px;
      line-height: 180px;
      font-weight: bolder;
      Color:#F9FAD8;
      Opacity: .7;
      }

    #frontQuotationMark{
      z-index: 2;
    }
    #backQuotationMark{
      margin: -30px 0px 0px 160px;
      z-index: 2;
    }

  /**scrollable section with base text**/ 

#scrollBox{
  grid-column-start: 4;
  grid-column-end: span 90;
  grid-row-start: 21;
  grid-row-end: span 28;
  margin: 0px 0px 0px 0px;
  -ms-overflow-style: none; 
  scrollbar-width: none; 
  z-index: 16;
  overflow-y: scroll;
  overflow-x: none;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
} 

#writeUp{  
  columns: 2;
  margin: 20px 33% 10px 40px;
  z-index: 10;
}


#toolsCharts { 
  display: flex;
  flex-wrap: wrap;
  z-index: 10;
  margin: 0px 0px 0px 40px;
}

.skill{
    display: flex;
    flex-direction: row;
    height: auto;
    margin: 0px 6px 0px 0px;
    z-index: 10;
}

.chart{
    margin: 4px 0px 4px 4px;
    z-index: 10;
}

.sideCarText{
    width: 140px;
    height: auto;
    background-color: rgba(255,255,255,0.8);
    z-index: 10; 
    padding: 36px 14px 4px 14px;
    margin: 4px 4px 4px 0px;
}

}