:root {
    font-size: 15px;
    --main-gray: #222;
    --main-white: #F5F5F5;
}

body {
    font-family: 'Saira Condensed', sans-serif;
    font-size: 22px;
    min-height: 100vh;
    color: var(--main-white);
    background-color: var(--main-gray);
    overflow: hidden;
}

.swirl_bg {
    --color-text: #ff53ff;
    --color-link: #3c48fa;
    --color-link-hover: #fff;
    --color-title: #fff;
}

a{
    cursor: pointer;
} 

a.hover-effect {
  position: relative;
  text-decoration: none;
  color: #88fdfd;
  transition: color 0.5s;
}

a.hover-effect::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #14e180;
  z-index: -1;
  transition: width .1s, background-color .5s;
  transform-origin: right;
  opacity: 0;
}

a.hover-effect:hover::before {
  width: 100%;
  background-color: #88fdfd;
  opacity: 1;
}

a.hover-effect:hover {
  color: black;
}

h1 {
    margin-top: 10px;
    text-transform: uppercase;
    margin-bottom: -30px;
}

h2 {
    font-weight: normal;
    margin-bottom: 50px;
}

.content {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: calc(100vh - 13rem);
    position: relative;
    justify-content: flex-start;
    align-items: center;
}

.content_text {
  max-width: 560px;
  width: 100%;
  text-align: center;
  padding: 40px;
  z-index: 100;
  text-align: left;
  background-color: rgba(17, 17, 17, 0.9);
  line-height: 1.3;
  position: relative;
  overflow-y: auto;
  
}

.inner_content {
    position: relative;
    padding: 25px;
}

#copyright {
    font-size: 18px;
    margin-top: 40px;
    color: #777;
}

/* Color Bar */
.cbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  overflow: hidden;
}

.cbar1 {
  width: 100%;
  height: 100%;
  background-color: #00e8a9;
  animation: cbar1Fade .3s ease-in-out;
}

.cbar2 {
  width: 100%;
  height: 100%;
  background-color: #88fdfd;
  position: absolute;
  left: 0;
  animation: cbar2Fade .5s ease-in-out;
}

@keyframes cbar1Fade {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes cbar2Fade {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

.close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.closed .inner_content {
    display: none;
}

.open .inner_content {
    display: block;
}

.close_toggle {
    animation: close_fadeIn .2s ease-out; 
}

.open_toggle {
    animation: open_fadeIn .2s ease-out; 
}

@keyframes close_fadeIn {  
   from {  
       opacity:0;
       transform: translateY(10px);
   }  

   to {  
       opacity:1;
       transform: translateY(0px);
   }  
}

@keyframes open_fadeIn {  
   from {  
       opacity:0;
       transform: translateY(-10px);
   }  

   to {  
       opacity:1;
       transform: translateY(0px);
   }  
}

/* Style for the slider container */
.slider-container {
  width: 100%;
  margin-top: 10px;
  margin-bottom: -10px;
  background: rgba(17, 17, 17, 0.9);
  padding: 10px 0;
}

/* Style for the range slider */
#hue-slider {
  width: 100%; /* Match the width of the container */
  background: transparent;
}

/* CSS for mobile devices with a maximum width of 600px */
@media (max-width: 600px) {
    .content {
        height: 100vh;
    }
    .close-icon {
        margin-right: 40px;
    }
    .inner_content {
        overflow-y: scroll;
    }
}