#main-content p {
    align-self: flex-start;
  }
  
  .logo-homepage {
    max-width: 100%;
    height: auto;
  }
  .h1-style {
    background: rgb(255,91,91);
    background: linear-gradient(90deg, rgba(255,91,91,1) 0%, rgba(255,91,91,1) 0%, rgba(214,240,125,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 50px 50px;
  }
  .mockup-dark {
    display: var(--mockup-dark-off);
  }
  .mockup-light {
    display: var(--mockup-light-off);
  }
  /*QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ*/
  /* CREDITS TO: Christian Schaefer */
  .slider-desktop {
    display: none;
  }
  @keyframes tonext {
    75% {
      left: 0;
    }
    95% {
      left: 100%;
    }
    98% {
      left: 100%;
    }
    99% {
      left: 0;
    }
  }
  
  @keyframes tostart {
    75% {
      left: 0;
    }
    95% {
      left: -300%;
    }
    98% {
      left: -300%;
    }
    99% {
      left: 0;
    }
  }
  
  @keyframes snap {
    96% {
      scroll-snap-align: center;
    }
    97% {
      scroll-snap-align: none;
    }
    99% {
      scroll-snap-align: none;
    }
    100% {
      scroll-snap-align: center;
    }
  }
  
  

  
  .carousel__viewport {
    scrollbar-width: thin;
  }
  

  
  * {
    -ms-overflow-style: none;
  }
  
  ol, li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .carousel {
    position: relative;
    padding-top: 105%;
    filter: drop-shadow(0 0 10px #0003);
    perspective: 100px;
    margin-bottom: 0;
  }
  
  .carousel__viewport {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    overflow-x: scroll;
    counter-reset: item;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    border-radius: 10px;
  }
  
  .carousel__slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    background-color: #85b;
    counter-increment: item;

    display: flex;
    flex-direction: column;
    align-items: center;

  }
  
  .carousel__slide:nth-of-type(2) {background-color: #e59;}
  .carousel__slide:nth-of-type(3) {background-color: #5b8;}
  .carousel__slide:nth-of-type(4) {background-color: #FF5A5A;}
  .carousel__slide:nth-of-type(5) {background-color: #6b97ff;}
  .carousel__slide:nth-of-type(6) {background-color: #f8dada;}
  .carousel__slide:nth-of-type(7) {background-color: #F6A787;}
  .carousel__slide:nth-of-type(8) {background-color: #9CDAC0;}
  .carousel__slide:nth-of-type(9) {background-color: #eeeb8e;}
  .carousel__slide:nth-of-type(10) {background-color: #52DFE7;}
  
  .carousel__snapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    scroll-snap-align: center;
  }
  
  @media (hover: hover) {
    .carousel__snapper {
      animation-name: tonext, snap;
      animation-timing-function: ease;
      animation-duration: 4s;
      animation-iteration-count: 9;
    }
  
    .carousel__slide:last-child .carousel__snapper {
      animation-name: tostart, snap;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .carousel__snapper {
      animation-name: none;
    }
  }
  
  .carousel:hover .carousel__snapper,
  .carousel:focus-within .carousel__snapper {
    animation-name: none;
  }
  
  .carousel__navigation {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
  }
  
  .carousel__navigation-list,
  .carousel__navigation-item {
    display: inline-block;
    padding-bottom: 4px;
  }
  
  .carousel__navigation-button {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #333;
    background-clip: content-box;
    border: 0.25rem solid transparent;
    border-radius: 50%;
    font-size: 0;
    transition: transform 0.1s;
  }
  
  .carousel::before,
  .carousel::after,
  .carousel__prev,
  .carousel__next {
    position: absolute;
    top: 0;
    margin-top: 55%;
    width: 4rem;
    height: 4rem;
    transform: translateY(-50%);
    border-radius: 50%;
    font-size: 0;
    outline: 0;
  }
  
  .carousel::before,
  .carousel__prev {
    left: -1rem;
  }
  
  .carousel::after,
  .carousel__next {
    right: -1rem;
  }
  
  .carousel::before,
  .carousel::after {
    content: '';
    z-index: 1;
    background-color: #333;
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
    font-size: 2.5rem;
    line-height: 4rem;
    text-align: center;
    pointer-events: none;
  }
  
  .carousel::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='0,50 80,100 80,0' fill='%23fff'/%3E%3C/svg%3E");
  }
  
  .carousel::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='100,50 20,100 20,0' fill='%23fff'/%3E%3C/svg%3E");
  }











  .slider-img {
    /*width: 240px;*/
    width: 40%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
  }
  .slider-img_h2 {
    margin: 16.25px 0 0 0;
    font-weight: 200;
    color: #fbfbfb;
  }
  /*QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ*/

  .article-projects {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    border-top: 1px solid rgba(128, 128, 128, 0.247);
    border-bottom: 1px solid rgba(128, 128, 128, 0.247);
    margin: 30px 0;
    padding: 0 1.95rem 35px 1.95rem;
    background: var(--article-projects-bg-color)
  }
  .projects-description {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mockup-easymathchallenge1 {
    height: auto;
    width: 95vw;
    border-radius: 30px;
  }
  
  /* Section-Showcase */
  .showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(128, 128, 128, 0.247);
    gap: 25px;
  }
  .showcase-projects {
    display: grid;
    justify-items: center;
    row-gap: 20px;
  }

  .figure-logo-homepage {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .mockup1 {
    margin-bottom: 10px;
  }

  .diashow-test-bild {
    aspect-ratio: 0.48;
    width: 100%;
    border-radius: 5px;
    scroll-snap-align: start;
  }

  .h2-hello {
    margin: 0;
  }
  .p-about {
    margin: 0;
    text-align: center;
  }
  .p-description {
    text-align: center;
  }

  .container-icons {
    display: none;
    gap: 70px;
    justify-content: space-around;
    margin: 100px 100px 0 100px;
  }
  .container-icons-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  /* @media screen and (min-width: 1200px){} Desktop
  @media screen and (min-width: 1025px) and (max-width: 1199px){} small laptop
  @media screen and (min-width: 768px) and (max-width: 1024px){} tablet
  @media screen and (min-width: 575px) and (max-width: 767.98px){} tablet and large mobiles
  @media screen and (min-width: 320px) and (max-width: 480px){} Mobile */


  /* tablet and large mobiles */
  @media screen and (min-width: 575px) {

  }
  
  /* tablet */
  @media screen and (min-width: 768px) {

  
    .showcase-projects {
      grid-template-columns: repeat(2, 1fr);
      column-gap: 20px;
      justify-items: initial;
    }
    .showcase-card:nth-of-type(3) {
      grid-column: 1 / 3;
    }
    .em-description {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .h1-style {
      font-size: 5rem;
    }

    .mockup-easymathchallenge1 {
      height: auto;
      width: 70vw;
    }

    /*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
    .slider-mobile {
      display: none;
    }
    .slider-desktop {
      display: block;
    }
    
    *{box-sizing: border-box; -webkit-box-sizing: border-box; }
    html, body { height: 100%; }
    /*body { margin: 0; font: 16px/1.3 sans-serif; }*/

    /*
    CREDITS GOES TO:
    PURE RESPONSIVE CSS3 SLIDESHOW GALLERY by Roko C. buljan
    http://stackoverflow.com/a/34696029/383904
    */

    .CSSgal {
      position: relative;
      overflow: hidden;
      height: 680px;
      
    }

    .CSSgal .slider {
      height: 100%;
      white-space: nowrap;
      font-size: 0;
      transition: 0.8s;
    }

    .CSSgal .slider > * {
      font-size: 1rem;
      display: inline-block;
      white-space: normal;
      vertical-align: top;
      height: 100%;
      /*full, half full, ...*/
      width: 100%;
      background: none 50% no-repeat;
      background-size: cover;
    }

    .CSSgal .prevNext {
      position: absolute;
      z-index: 1;
      top: 50%;
      width: 100%;
      height: 0;
    }

    .CSSgal .prevNext > div+div {
      visibility: hidden;
    }

    .CSSgal .prevNext a {
      background: #fff;
      position: absolute;
      width:       60px;
      height:      60px;
      line-height: 60px;
      text-align: center;
      opacity: 0.7;
      -webkit-transition: 0.3s;
              transition: 0.3s;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      left: 0;
    }
    .CSSgal .prevNext a:hover {
      opacity: 1;
    }
    .CSSgal .prevNext a+a {
      left: auto;
      right: 0;
    }

    .CSSgal .bullets {
      position: absolute;
      z-index: 2;
      bottom: 0;
      padding: 20px 0;
      width: 100%;
      text-align: center;
    }
    .CSSgal .bullets > a {
      display: inline-block;
      width:       15px;
      height:      15px;
      line-height: 30px;
      text-decoration: none;
      text-align: center;
      background: rgba(255, 255, 255, 1);
      -webkit-transition: 0.3s;
              transition: 0.3s;
      font-size: 16px;
      font-family: "inconsolata", Arial, Helvetica, sans-serif;
    }
    .CSSgal .bullets > a+a {
      background: rgba(255, 255, 255, 0.5);
    }
    .CSSgal .bullets > a:hover {
      background: rgba(255, 255, 255, 0.7) !important;
    }

    .CSSgal >s:target ~ .bullets >* {      background: rgba(255, 255, 255, 0.5);}
    #s1:target ~ .bullets >*:nth-child(1) {background: rgba(255, 255, 255,   1);}
    #s2:target ~ .bullets >*:nth-child(2) {background: rgba(255, 255, 255,   1);}
    #s3:target ~ .bullets >*:nth-child(3) {background: rgba(255, 255, 255,   1);}
    #s4:target ~ .bullets >*:nth-child(4) {background: rgba(255, 255, 255,   1);}
    #s5:target ~ .bullets >*:nth-child(5) {background: rgba(255, 255, 255,   1);}

    .CSSgal >s:target ~ .prevNext >* {      visibility: hidden;}
    #s1:target ~ .prevNext >*:nth-child(1) {visibility: visible;}
    #s2:target ~ .prevNext >*:nth-child(2) {visibility: visible;}
    #s3:target ~ .prevNext >*:nth-child(3) {visibility: visible;}
    #s4:target ~ .prevNext >*:nth-child(4) {visibility: visible;}
    #s5:target ~ .prevNext >*:nth-child(5) {visibility: visible;}

    #s1:target ~ .slider {transform: translateX(   0%); -webkit-transform: translateX(   0%);}
    #s2:target ~ .slider {transform: translateX(-100%); -webkit-transform: translateX(-100%);}
    #s3:target ~ .slider {transform: translateX(-200%); -webkit-transform: translateX(-200%);}
    #s4:target ~ .slider {transform: translateX(-300%); -webkit-transform: translateX(-300%);}
    #s5:target ~ .slider {transform: translateX(-400%); -webkit-transform: translateX(-400%);}
    

    .CSSgal{
      color: #fff;  
      text-align: center;
    }
    .CSSgal .slider h2 {
      margin-top: -590px;
      font-weight: 200;
      letter-spacing: -0.06em;
      word-spacing: 0.2em;
      font-size: 3em;
      color: #fbfbfb;
    }
    .CSSgal a {
      border-radius: 50%;
      margin: 0 3px;
      color: rgba(0,0,0,0.8);
      text-decoration: none;
    }
    .diashow-pictures {
      width: 240px;
      height: auto;
      border-radius: 8px;
      margin-top: 65px;
    }

    
    .CSSgal .slider > * {
      width: 50%;
    }
    .CSSgal .bullets > a {
      width:       30px;
      height:      30px;
    }
    .diashow-pictures {
      width: 250px;
      height: auto;
    }
    .CSSgal .bullets {
      padding: 10px 0;
    }
    .CSSgal .slider h2 {
      margin-top: -610px;
    }


    .CSSgal .bullets > a:nth-of-type(6) {display: none;}
    .CSSgal .bullets > a:nth-of-type(7) {display: none;}
    .CSSgal .bullets > a:nth-of-type(8) {display: none;}
    .CSSgal .bullets > a:nth-of-type(9) {display: none;}
    .CSSgal .bullets > a:nth-of-type(10) {display: none;}

  }

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

  
  /* navbar breakpoint ***************************************************************************************** */
  /* small laptop */
  @media screen and (min-width: 1024px) {
    .article-projects {
      padding: 0 10rem 30px 10rem;
      margin-bottom: 0;
    }
    .showcase-projects {
      grid-template-columns: repeat(4, 1fr);
      column-gap: 20px;
      justify-items: initial;
    }
    .showcase-card:first-of-type {
      grid-column: 1 / 3;
    }
    .showcase-card:nth-of-type(3) {
      grid-column: 4;
      grid-row: 1 / 3;
      aspect-ratio: 1 / 1;
    }
    .showcase-card:last-of-type {
      grid-column: 2 / 4;
    }
    .projects-description > div {
        flex: 50%;
    }
    .projects-description:first-child {
      max-width: 100%;
      height: auto;
    }
    .mockup-easymathchallenge1 {
      height: 40vw;
      width: auto;
    }

    .logo-homepage {
      max-width: 70%;
      height: auto;
    }
    .figure-logo-homepage {
      margin-top: 0;
    }

    .container-icons {
      display: none;
      gap: 200px;
    }

    .h1-style {
      font-size: 4rem;
      margin: 130px 130px;
      font-size: 6.8rem;
    }
  }
  

  
  /* smaller Desktop */
  @media screen and (min-width: 1200px) {
    .mockup-easymathchallenge1 {
      height: 35vw;
    }
  }
  
  /* Desktop */
  @media screen and (min-width: 1700px) {
    
    .mockup-easymathchallenge1 {
      height: 25vw;
    }
    .projects-description {
      display: flex;
      flex-direction: row-reverse;
      padding-left: 50px;
      padding-right: 50px;
    }
    .mockup1 {
      margin-left: 150px;
    }
  }