body {
    margin: 0;
    overflow-x: hidden;
    background: #000;
    width: 100%;
}
#waveCanvas {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1; /* Full-screen canvas in background */
    
}

@font-face {
    font-family: relish;
    src: url("fonts/RelishGargler.otf");
}

#header {
    max-width: 100%;
}

#logo {
    color: white;
    font-family: relish;
    margin-left: 18px;
}

nav {
    display: flex;
}
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}
nav ul li {
    position: relative;
}
nav a {
    color: white;
    text-decoration: none;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    padding: 10px 20px;

    position: relative;
    z-index: 2;
    transition: color 0.3s;
}
nav a:hover {
    color: #0ff;
}

.nav-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* Nav canvas behind link text, above full-screen canvas */
    pointer-events: none; /* Prevent canvas from blocking hover */
}

#main-container {
    width: 100%;
    display: flex;
    flex-flow: column;
    color: white;
    font-family: helvetica;
}

#headline {
    margin-left: auto;
    margin-right: auto;
  margin-top: 3vh;
    font-family: helvetica;
    font-size: calc(1.5em + 1vw);
    text-shadow: 0px 0px 14px teal;
}

.container {
  display: flex;
/*   border:1px solid red; */
    width:90%;
    flex-flow: column;
  height: 100%;
  align-items: center;
    margin:auto;
}

svg {
    display: block;
    font: 6em 'relish';
    height: 150px;
    margin: 0;
    margin-top: -55px;
}

.text-copy {
    fill: none;
    stroke: #03c6e0;
    stroke-dasharray: 6% 29%;
    stroke-width: 5px;
    stroke-dashoffset: 0%;
    animation: stroke-offset 5.5s infinite linear;
    text-shadow: 4px 4px 15px #119e8e;

  
}

#blocks {
           COLOR: #ff0029
        }

.text-copy:nth-child(1){

	animation-delay: -1;
    
}

.text-copy:nth-child(2){
	
	animation-delay: -2s;
}

.text-copy:nth-child(3){
	
	animation-delay: -3s;
 
}

.text-copy:nth-child(4){
	
	animation-delay: -4s;
}

.text-copy:nth-child(5){
	
	animation-delay: -5s;
}

@keyframes stroke-offset{
	100% {stroke-dashoffset: -35%;}
}

.content-box {
       border: 2px inset #a5b4c559;
    background: linear-gradient(45deg, #02020259, #211c1c2e);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 2px 2px 16px -1px teal;
    width:94%;
    
    margin:auto;
    margin-bottom:25px;
}

.contact-link{
text-decoration: none;
    color:#63eeff;
}
.card-container{
    display:flex; 
    width:100%;
}

@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}
:root {
  --card-height: 25vh;
  --card-width: calc(var(--card-height) / 1.5);
}
.card {
  background: #191c29;
  width: var(--card-width);
  height: var(--card-height);
  padding: 3px;
  position: relative;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  flex-flow: column;
  font-size: 10pt;
  cursor: pointer;
  font-family: helvetica;
  margin: auto;
}

/* New CSS starts here */

.card h3 {
  color: #fff; /* Visible by default */
  transition: color 1s;
}

.card p {
  color: transparent; /* Transparent by default */
  transition: color 1s;
}

.card:hover h3 {
  color: rgb(88 199 250 / 100%); 
}

.card:hover p {
  color: rgb(88 199 250 / 100%); /* Visible on hover */
}

/* New CSS ends here */

.card:hover:before,
.card:hover:after {
  animation: none;
  opacity: 0;
}
.card::before {
  content: "";
  width: 104%;
  height: 102%;
  border-radius: 8px;
  background-image: linear-gradient(var(--rotate), #669dff, #63eeff 43%, #00c28d);
  position: absolute;
  z-index: -1;
  top: -1%;
  left: -2%;
  animation: spin 3.5s linear infinite;
}
.card::after {
  position: absolute;
  content: "";
  top: calc(var(--card-height) / 6);
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  transform: scale(0.8);
  filter: blur(calc(var(--card-height) / 6));
  background-image: linear-gradient(var(--rotate), #669dff, #63eeff 43%, #00c28d);
  opacity: 1;
  transition: opacity 0.5s;
  animation: spin 3.5s linear infinite;
}
@keyframes spin {
  0% {
    --rotate: 0deg;
  }
  100% {
    --rotate: 359deg;
  }
}

.contact-form{
       display: flex;
    flex-flow: column;
    width:100%;
    margin-top: 15px;
}

.contact-form button{
     display:block;
   height:50px;
    width:200px;
    bottom: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top:20px;
    color: white;
    background: linear-gradient(145deg, #272727, #202020);
    box-shadow: 6px 6px 12px #101010, -2px -4px 6px #383838;
    border-radius: 24px;
    border: inset 2px teal;
}

.contact-form input, textarea{
       width: 75%;
    display: block;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
     padding-left:20px;
     padding-right:20px;
     color:white;
     border-radius:30px;
     border:none;
   
}

.contact-form input{
     line-height:33px;
}

.dip{
 
background: #212121bd;
box-shadow: inset 20px 20px 60px #161616,
            inset -20px -20px 60px #2c2c2c;
}

.g-recaptcha{
margin-left: auto;
    margin-right:auto;
}
.content-text{
    width:75%;
    margin:auto;
     margin-bottom:20px;
    margin-top:20px;
    line-height:25px;
}

.content-column{
    display:flex;
    flex-flow:column;
    width:90%;
    margin-bottom:20px;
    margin-top:20px;
}

.content-column p{
   
    width:75%;
    margin:auto;
    margin-bottom:20px;
    margin-top:20px;
}

.content-column ul{
   
    width:75%;
    margin:auto;
    margin-bottom:20px;
    margin-top:20px;
}

.content-row{
    display:flex;
    width:100%;
    margin-bottom:20px;
    margin-top:20px;
}

.content-s{
       display: flex;
    width: 75%;
    margin-bottom: 20px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.content-s img{
    width:20%;
    margin-right:25px;
    border-radius:15px;
}

.c-headline{
    text-align: center;
}
.content-row img{
    width:20%;
    margin:auto;
    border-radius:20px;
    box-shadow: 1px 1px 10px #00fff8;
}

.content-row p{
    width:75%;
   margin: auto;
        line-height: 25px;
}
.construction{
    color:white;
    animation: linear 10s streamer infinite;
    font-family: helvetica;
}

@keyframes streamer{
    0%{
        transform: translateX(-10%);
    }
    
    100%{
        transform: translateX(100%);
    }
}
.site-container{
  width:20%; 
   display:flex;
    flex-flow: column;
    font-family: helvetica;
    margin-bottom:35px;
    margin-left: auto;
    margin-right: auto;
    border: 2px inset #a5b4c559;
    background: linear-gradient(45deg, #02020259, #211c1c2e);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    box-shadow: 2px 2px 16px -1px teal;
    padding: 10px;
    cursor:pointer;
    
}

.center-text{
text-align:center;    
}

#site-list{
         display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 9%;
    }

.site-image{
        width: 90%;
    border-radius: 20px;
    margin:auto;
}

@media screen and (max-width: 992px) {
    nav {
        width: 100%;
    }
    nav ul {
        gap: 0px;
        width: 100%;
    }
    nav ul li {
        margin: auto;
    }
    
    nav ul li a{
        font-size: 12pt;
        font-weight:bolder;
    }
    #site-list{
     flex-flow: column;   
    }
    .site-row{
        flex-flow:column;
}
    .site-container{
        width:85%;
    }
    
    .site-container h2{
        text-align:center;
    }
    
    .card-container{
   gap: 25px;
        flex-wrap: wrap;
}
    
    .content-row{
        flex-flow:column;
}
    
    .content-row img{
        width:75%;
        margin-bottom:20px;
        margin-top:20px;
    }
    
    .construction{
    color:white;
    animation: linear 5s streamer infinite;
    font-family: helvetica;
}

.content-box{
    width:85%;
}

.content-s img{
    height: fit-content;
    width: 55%;
    margin-top: 20px;
    margin-right:auto;
}
    
}
