html, body {
    font-family: 'Dongle', sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
  }

.hidden {
   display:none;
}

  
   /* bubbles starts */
  .text-container {
    z-index: 100;
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-areas: 
      "cv cv"
      "name name"
      "contact portfolio";
    grid-template-columns: 1fr 3fr;
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    user-select: none;
    text-shadow: 1px 1px rgba(0,0,0,0.1);
  }

  .text-container > div.cv {
    grid-area: cv;
    text-align: right;
    padding-right: 15%;
  }

  .text-container > div.name {
    grid-area: name;
    text-align: center;
    font-weight: 500;
    font-size: 96px;
    color: white;
    opacity: 0.5;
  }

  .text-container > div.contact {
    grid-area: contact;
    text-align: right;
    padding-left: 15%;
  }

  .text-container > div.portfolio {
    grid-area: portfolio;
    text-align: center;
  }

  div.cv a, div.contact a, div.portfolio a {
    color: #ffffff;
    text-decoration: none;
  }

  div.cv a:hover, div.contact a:hover, div.portfolio a:hover {
    color: #e3bcfe;
  }

  div.cv a:hover p, div.contact a:hover p, div.portfolio a:hover p {
    filter: blur(0px); !important
    opacity: 1; !important
    /*height: 50px;
    width: 50px;
    padding: 20px;
    border-radius: 50%;
    background-color: aqua;
    filter: blur(18px);
    opacity: 0.5; */
  }
  
  :root {
    --color-bg1: rgb(108, 0, 162);
    --color-bg2: rgb(69, 235, 224); /* rgb(69, 103, 235); */
    --color1: 18, 113, 255;  /*light blue */
    --color2: 221, 74, 255;  /* svetle fialova */
    --color3: 100, 220, 255; /* svetle modra */
    --color4: 230, 3, 169;  /* mid red */
    --color5: 2, 7, 105;  /* green 3, 230, 158 */
    --color-interactive: 140, 100, 255;  /* purple */
    --circle-size: 80%;
    --blending: hard-light;
  }
  
  @keyframes moveInCircle {
    0% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(180deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes moveVertical {
    0% {
      transform: translateY(-50%);
    }
    50% {
      transform: translateY(50%);
    }
    100% {
      transform: translateY(-50%);
    }
  }
  
  @keyframes moveHorizontal {
    0% {
      transform: translateX(-50%) translateY(-10%);
    }
    50% {
      transform: translateX(50%) translateY(10%);
    }
    100% {
      transform: translateX(-50%) translateY(-10%);
    }
  }
  
  
  .gradient-bg {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
    top: 0;
    left: 0;
  
    svg {
      position: fixed;
      top:0;
      left:0;
      width: 0;
      height: 0;
    }
  
  
    .gradients-container {
      filter: url(#goo) blur(40px) ;
      width: 100%;
      height: 100%;
    }
  
    .g1 {
      position: absolute;
      background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
      mix-blend-mode: var(--blending);
  
      width: var(--circle-size);
      height: var(--circle-size);
      top: calc(50% - var(--circle-size) / 2);
      left: calc(50% - var(--circle-size) / 2);
  
      transform-origin: center center;
      animation: moveVertical 30s ease infinite;
  
      opacity: 1;
    }
  
    .g2 {
      position: absolute;
      background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
      mix-blend-mode: var(--blending);
  
      width: var(--circle-size);
      height: var(--circle-size);
      top: calc(50% - var(--circle-size) / 2);
      left: calc(50% - var(--circle-size) / 2);
  
      transform-origin: calc(50% - 400px);
      animation: moveInCircle 20s reverse infinite;
  
      opacity: 1;
    }
  
    .g3 {
      position: absolute;
      background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
      mix-blend-mode: var(--blending);
  
      width: var(--circle-size);
      height: var(--circle-size);
      top: calc(50% - var(--circle-size) / 2 + 200px);
      left: calc(50% - var(--circle-size) / 2 - 500px);
  
      transform-origin: calc(50% + 400px);
      animation: moveInCircle 40s linear infinite;
  
      opacity: 1;
    }
  
    .g4 {
      position: absolute;
      background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
      mix-blend-mode: var(--blending);
  
      width: var(--circle-size);
      height: var(--circle-size);
      top: calc(50% - var(--circle-size) / 2);
      left: calc(50% - var(--circle-size) / 2);
  
      transform-origin: calc(50% - 200px);
      animation: moveHorizontal 40s ease infinite;
  
      opacity: 0.7;
    }
  
    .g5 {
      position: absolute;
      background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
      mix-blend-mode: var(--blending);
  
      width: calc(var(--circle-size) * 2);
      height: calc(var(--circle-size) * 2);
      top: calc(50% - var(--circle-size));
      left: calc(50% - var(--circle-size));
  
      transform-origin: calc(50% - 800px) calc(50% + 200px);
      animation: moveInCircle 20s ease infinite;
  
      opacity: 1;
    }
  
    .interactive {
      position: absolute;
      background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
      mix-blend-mode: var(--blending);
  
      width: 100%;
      height: 100%;
      top: -50%;
      left: -50%;
  
      opacity: 0.7;
    }
    /* bubbles end*/
}

.cv-container {
}

  .cv-container img {
    margin: auto;
    display: block;
  }

div.intro img {
  width: 100%;
  padding: 0;
}

.visual-content {
  left: 20%;
  right:0;
  padding-bottom: 5%;
}

.visual-content img {
  width: 55%;
  margin: 0 0 0 10%;
  padding-top: 5%;
  display: block;
}

div.skoda h2 {
  color: #419468;
  margin-bottom: 8%;
}

div.main-skoda {
  background-color: #f6f6f6;
}
div.skoda {
  width: 55%;
  margin: 0 0 0 10%;
  padding-top: 5%;
  display: block;
}

div.skoda div {
  background-color: #ffffff;
  padding: 4% 6%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-bottom: 10%;
}

div.skoda img {
  margin: 0;

}

div.ideate img {
  width: 100%;
  margin:4% 0 10% 0;
  padding: 0;
}

div.ideate h3 {
  margin-bottom: 6%;
}

div.prototype {
  height: 700px;
}

div.prototype div {
  float: left;
  box-shadow: none;
  width: 38%;
  text-align: center;
}

div.prototype h4 {
  margin-top: 70%;
  color: #419468;
}

div.prototype p {
  font-size: 15px;
}

.sidebar {
    width: 100%;
    position: fixed;
    padding: 8px 0;
    top: 0;
    max-width: 20%;
    right: 10%;
    height: 50%;
  }

.sidebar div {
  text-align: right;
  margin-bottom: 20%;
}

.sidebar a {
  text-decoration: none;
  margin: 0 2%;
  color: #62258a;
}

.sidebar a:hover {
  color: #af86ca;
}

.contact-info {
  background-image: linear-gradient(to right, #5029fa , #796cc5 ,  #FAC3DD , #7B8DFF ) ;
  /*rgb(230, 3, 169) , #10057b , A6A6FF) */
  width: 100%;
  text-align: center;
  margin-top: 5%;
  padding: 2% 0 10% 0;
}

.contact-info div {
  position: absolute;
  padding: 0% 2%;
  text-align: center;
  right:0;
  width: 26%;
}

.contact-info div a {
  margin: 10%;
}

.contact-info h2 {
  color: #ffffff;
  margin: 5% 0 5% 0;
}

.contact-info p {
  display: inline;
  margin: 5%;
  color: #000000;
}

.contact-info a {
  text-decoration: none;
  color: #000000;
}



