﻿.section-writer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  111min-height: 100vh;  height: 129px; top: 0; margin-top: -33px; 
  font-size: 2em;
  color: #fff;
  text-transform: uppercase;
   gap: 30px;     
}

.section-writer h1 {
  	font-size: clamp( 1.7rem, 3.5vw, 8.5vh); 
  	text-decoration: underline;
	font-weight: 900;
	font-family: "Montserrat", sans-serif;/**DO NOT CHANGE**/
 
}

.text-shadow {
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: #fff;
  -webkit-text-stroke-width: 1px;
  text-shadow: 2px 2px 10px #2962ff;
  transition: all 0.5s ease-in-out;
  text-align: center;
  letter-spacing: 0.2em;
  -webkit-animation: flicker 0.5s ease-in-out infinite alternate;
          animation: flicker 0.5s ease-in-out infinite alternate;  
}
.text-shadow:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .tags-text-line small {
    font-size: 0.5em;
  }
}

@-webkit-keyframes flicker {
  0% {
    opacity: 0.5;
    text-shadow: 2px 2px 10px #2962ff;
  }
  100% {
    opacity: 1;
    text-shadow: 2px 2px 20px #2962ff;
  }
}

@keyframes flicker {
  0% {
    opacity: 0.5;
    text-shadow: 2px 2px 10px #2962ff;
  }
  100% {
    opacity: 1;
    text-shadow: 2px 2px 20px #2962ff;
  }
}



/**************************************************************************************/


.letter-shine {
  color: #fff;
  background: linear-gradient(to right, #4d4d4d 0, #fff 10%, #4d4d4d 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  text-decoration: none;
  white-space: nowrap;
}
@-moz-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 480px;
  }
  100% {
    background-position: 480px;
  }
}
@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 480px;
  }
  100% {
    background-position: 480px;
  }
}
@-o-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 480px;
  }
  100% {
    background-position: 480px;
  }
}
@keyframes shine {
  0% {
    background-position: 0; 
  }
  60% {
    background-position: 480px; 
  }
  100% {
    background-position: 480px; 
  }
}