
body {
    display: flex;
    flex-direction: column;

    padding:0;
    min-height: 100vh;
    background: linear-gradient(90deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    margin: 0 auto;
    animation: gradient 15s ease infinite;
    height: auto;
    overflow-x: hidden;
  }
  
  @keyframes gradient {
    0% {
      background-position: 15% 0%;
    }
    50% {
      background-position: 80% 0%;
    }
    100% {
      background-position: 14% 0%;
    }
  }

/* latin */
@font-face {
  font-family: 'Impact';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/l/font?kit=HhyVU5gq9PCuP11_LNCHOoxCTQ&skey=5128cd07406988e&v=v19) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}



.square {
    width: 200px;
    height: 400px;
    position: absolute;
 
  }
  
  .dots {

    right: 0%;
    top: 3%;
    height: 20ch;
    width:20ch;
    border-radius: 100%;
    background-image: radial-gradient(violet 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    z-index: -1;
  }
  
  .stripes {
    
  height: 100px;
  width: 100px;
  /* mix-blend-mode:luminosity; */
    right: 150px;
    top:200px;
 
    /* border-radius: 100%; */
    background-image: repeating-linear-gradient(
      45deg,
      rgb(255, 255, 255) 0px,
      rgb(255, 255, 255) 2px,
      transparent 3px,
      transparent 8px
    ); 
    z-index: -1;
    /* opacity:0.2; */
    /* animation: moveBackground 30s linear infinite; */


  }

  .stripes2 {
    width: 630px;
    height: 220px;
    margin-top: -60px;
    margin-left: -70px;
    background-image: repeating-linear-gradient(
      -45deg,
      blue 0px,
      blue 2px,
      transparent 3px,
      transparent 8px
    );
    z-index: -1;
    opacity:0.1;
  }
  
  @keyframes moveBackground {
    0%, 100% { transform: rotate(0deg); }
    
    99.9% { 
        transform: rotate(360deg);   
    }
    
  }
  



h2 {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', Verdana, sans-serif;
}


.logoSpace {
    width: 18ch;
    left:0px;
    top: -136px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 8ch;
    position:relative;     
}

#myName {
    display: block;
    font-size:6ch;
    font-weight: bold;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: 0.03em;
  
}
    
#tagline {
    display:block;
    font-family:monospace;
    font-size: large;
}

.web-top {
    display: flex;


}

.flag-icon-se{
  margin-left: 1ch;
}

#nav-bar {
    display: inline-flex;
    justify-content: right;
    align-items: center;
    flex-grow: 1;
    flex-wrap: wrap;
    margin: 1ch;
}

.text-nav-links {
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: sticky;
    top: 0;
    z-index: 2;
}


.nav-li {
    border-bottom: 2px dashed greenyellow;
color:white;
display: block;
text-align: center;
padding:12px 1ch;
text-decoration: none;
min-width: 5ch;
backdrop-filter: blur(3px); /* Applies a 10px blur effect */
-webkit-backdrop-filter: blur(3px); /* For Safari support */

margin-top: 8px;

}
  
.nav-li:hover {
   
    color: yellow;
    box-shadow: 0 10px 8px -8px rgba(255, 255, 255, 0.88);
     cursor: pointer;
}

.client-logo{
    margin-right: 1ch;
    margin-bottom: 1ch;

    height: 200px;
    width:200px;
    background-color: white;

    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    float: left;
    mix-blend-mode:lighten;
}

.client-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: brightness(0);
  }

#content {
    display:block;
    width: 80%;
    margin: 0 auto;
    padding-top: 30px;
    flex: 1 0 auto;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    position: relative;


}

.white-text {
    color:white;
}
#content H1 {
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;

}

#content H2,H3 {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-bottom: 0px;
    padding-bottom: 0px;

    
}

.cblock {
    min-height: 200px;
    margin-top: 5px;
   display:inline-block;
   width: 100%;
    
}

#language-icon {
    height: 3ch;
    margin-top: -0.2em;
    margin-right: -0.5em;
    display:none;
}


#downloadResumeBtn {
display: inline-block;
background: white;
padding: 8px 12px;
margin-left: 10px;
cursor:pointer;
text-decoration: none;
font-size: small;
border: none;
}


.profile-pic {
    width: 35%;
    float: right;
    filter:grayscale();
    z-index: -10;
    transition: 0.5s;
}

.profile-pic:hover{
    filter:grayscale(0);
}

.hero-text {
    font-family:'Verdana';
}

.hero-text::before {
    content: "+";
    position: absolute;
    left:-20px;
    top:80px;
    color: gold;

    font-size: x-large;
    animation: moveBackground 10s linear infinite; 

    
  }


.translate {
    font-family:'Verdana';
    font-size: small;
    display: inline-flex;
    height: 18px;
    cursor: pointer;
    padding: 5px 10px;
    text-decoration: none;
    border: 1px solid white;
}

#translate-link:visited {
    text-decoration: none;
    color: black;
}

#hireMeButton {
    padding: 15px; 
    font-family:'Courier New', Courier, monospace;
    font-size: large;
    border-radius: 5px;
    border: 1px solid black;
    background-color: gold;
    color: black;
    cursor:pointer;
    box-shadow: 0 4px 8px 0 rgba(128, 0, 128, 0.2);
    transition: 0.3s;

}   


  
  #hireMeButton:hover {
    box-shadow: 0 8px 16px 0 rgba(243, 156, 6, 0.6);
    border: 1px dashed yellow;
    color:white;
    font-weight: bold;
   
  }

 

  .content-tab {
    display: none;
    
  }

  .content-tab.active {
    display: block;
  }



  @media (min-width: 769px) { /* For devices larger than 768px */
    #content {

      max-width: 700px;
    }
    
  }


  @media screen and (max-width: 800px) { /* For devices smaller than 400px */
   
    #nav-bar {
        justify-content: center;
    }

    

    .text-nav-links {
       padding: 1ch 0;
    }

    .web-top {
        justify-content: center;
    }
    
    .stripes2{
        display:none;
    }
    .logoSpace{
        width: 100%;
        top:-50px;
     
    }
    .stripes {
      height: 15vw;
      width: 15vw;
      right: 15vw;
      top: 22vh;
      opacity: 0.7;
  }
   
  }



  @media screen and (max-width: 560px) {
    .profile-pic{
      width:70%;
      display:block;
      float:none;
      margin: 0 auto;
    }
    .pros-list{
      margin-left: -4ch;
    }
    .dots{
    left: 4vw;
    width: 70vw;
    height: 70vw;
    }
    .stripes{
      display: none;
    } 
    .client-logo{
      width:17vh;
      height:17vh;
    }

    #hireMeButton {
      width:100%;
    }

  }

  #why-work-with-me {
    width: 300px;
    display: inline-block;
  }


  .presentation-pic {
    display: inline-block;
    width: 100%;
  }

  .copyright {
    text-align: center;
    margin-top: 40px; 
    margin-bottom: 15px;
    padding:30px;   
    color: maroon;
    font-family:'Courier New', Courier, monospace;
    font-size: small;
    opacity: 0.8;
    transition: 1s;
  }

  .copyright:hover{
    color:white;
  }

  .centerTitle {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    font-size: x-large;
  }

  .toggle-list {
    list-style-type: none;
    padding: 0;
  }
  
  .toggle-button {
    width: 100%;
    text-align: left;
    padding: 10px;
  
    border: none;
    cursor: pointer;
  }
  
  .toggle-content {
    display: none;
    padding-left: 25px;
  }
  
  .toggle-content.active {
    display: block;
  }

  .toggleExtraText {
    all: initial;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    text-transform:uppercase;
    margin-left: 46px;
    margin-top: 2px;
  }

  
  .toggle-triangle {
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s ease;
  }
  
  .toggle-button.active .toggle-triangle {
    transform: rotate(90deg);
  }

  .jumpToSection{
    margin:5px 0;
    padding: 3px;
    border: 1px solid black;
  }

  .jumpToSection:hover{
    background-color: lightsalmon;
  }


  .empty-space{
    display:block;
    height:40px;
  }
  .big-empty-space{
    height:120px;
  }



  .hashtag-term{
    font-family:'Courier New', Courier, monospace;
    font-weight: 600;
    display: inline-block;
    padding: 5px 10px;
    margin: 3px;
    border: 2px solid transparent;
    background: linear-gradient(rgb(56, 41, 41), rgb(53, 50, 63)) padding-box,
    linear-gradient(to bottom, rgb(212, 38, 200),rgb(45, 36, 150)) border-box;
    color:rgb(153, 157, 173);  
    border-radius: 10px;
    mix-blend-mode:color-dodge;
    transition:0.1s;
  }

  .hashtag-term:hover{
    padding: 6px 12px;
    color:rgb(233, 233, 233);
    margin:1px;
    background: linear-gradient(rgb(56, 41, 41), rgb(53, 50, 63)) padding-box,
    linear-gradient(to bottom, rgb(195, 195, 195),rgb(255, 255, 255)) border-box;
    cursor: pointer;
  }

  
.extra-large {
    font-size: 6ch;
}

.slim-text {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 100; /* Ultra-light weight */
    font-size: 4ch;
    margin-bottom: 2ch;
    margin-top:1ch;
}

.cert-text-container{
    padding: 0 1ch;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;

    display:flex;

    
}
.all-certs{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-around;
 
}
.cert-logo-text{
    font-size: 5ch;
    margin-top: 0.5ch;
    padding: 0;
    color:whitesmoke;
    margin-left:1.2ch;
}

.flag-float-top {
    font-size: 0.6ch;
    vertical-align: top;
    position: relative;
    top:-2.5ch;
    margin: 6px;
}


.cert-badge-image {
    height: 10ch;
    width: 10ch;
    padding:10px;
    display: inline;
    overflow: hidden;
    object-fit: contain;
    /* filter: brightness(0); */
}

.small-explanation-right {
    display:block;
    text-align: left;
    font-size: small;
    cursor: pointer;
    margin-bottom: 3ch;
    margin-top: -5ch;
    color:wheat;
}

.word-with-circles {
    display: inline-block;
    position: relative;
    margin-right: 40px; /* Adjust spacing as needed */
    font-size: 6ch;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  }
  
  .word-with-circles:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -30px; /* Adjust position as needed */
    top: 50%;
    transform: translateY(-50%);
    width: 15px; /* Circle size */
    height: 15px; /* Circle size */
    background-color: #000; /* Circle color */
    border-radius: 50%;
  }



.margin-bottom-0 {
    margin-bottom: 0;
}

.margin-top-0 {
    margin-top: 0;
}



.pros-li{
    margin-top:6px;
}

/*    Testemonial Section   */

.testimonial {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(255, 192, 203, 0.284);
    ;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .testimonial blockquote {
    position: relative;
    font-style: italic;
    margin: 0 0 20px;
    padding: 20px;
    background-color: transparent;
    border-radius: 5px;
    color: white;
  }
  
  .testimonial blockquote::before,
  .testimonial blockquote::after {
    content: '"';
    position: absolute;
    font-size: 50px;
    color: #ddd;
  }
  
  .testimonial blockquote::before {
    top: 0;
    left: 10px;
  }
  
  .testimonial blockquote::after {
    bottom: -20px;
    right: 10px;
  }
  
  .testimonial cite {
    display: block;
    text-align: right;
  }
  
  .testimonial .name {
    font-weight: bold;
    display: block;
    color:white;
  }
  
  .testimonial .title {
    font-style: italic;
    color: white;
  }




  .t-left {
    margin: 20px;
    margin-left: 0px;
  }

  .t-left cite {
    text-align: left;
  }