/* Particales js library  */
body{ margin:0; font:normal 75% Arial, Helvetica, sans-serif; } canvas{ display: block; vertical-align: bottom; } /* ---- particles.js container ---- */ #particles-js{ position:absolute; width: 100%; height: 100%; background-color: #0f0f0f; background-image: url(""); background-repeat: no-repeat; background-size: cover; background-position: 50% 50%; } /* ---- stats.js ---- */ .count-particles{ background: #000022; position: absolute; top: 48px; left: 0; width: 80px; color: #13E8E9; font-size: .8em; text-align: left; text-indent: 4px; line-height: 14px; padding-bottom: 2px; font-family: Helvetica, Arial, sans-serif; font-weight: bold; } .js-count-particles{ font-size: 1.1em; } #stats, .count-particles{ -webkit-user-select: none; margin-top: 5px; margin-left: 5px; } #stats{ border-radius: 3px 3px 0 0; overflow: hidden; } .count-particles{ border-radius: 0 0 3px 3px; }




body {
    margin: 0;
    background-color: #050505;
    color: #cccccc;
    font-family: monospace; 
    line-height: 1.6;
    overflow-y: hidden;
}

a:link {
  color: #74D1F6;
  font-size: 16px;
}

a:visited {
  color: #adf277;
  font-size: 16px;
}

a:active {
  color: #adf277;
  font-size: 16px;
}
h1, h2, h3 {
    color: #74D1F6;
    margin: 0 0 15px 0;
}

.hero-container {
    position: relative; 
    width: 100%;
    height: 100vh;      
    overflow: hidden; 
      
}
.hero-content {
    position: relative;
    padding-top: 1%;
    z-index: 10;

}


.hero-content {
    position: absolute;
margin-top: 3%;   
top: 50%;
left: 50%;
    z-index: 3;        
    transform: translate(-50%, -50%); 
    text-align: left;
    width: 100%;
    height: 100%;   
    max-width: 320px;
}


.hero-content img {
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto;
    

}
.textbox{
    position: absolute;
    margin: 20px auto;
    top: 50%;           
    left: 50%;          
    z-index: 4;    
    transform: translate(-50%, -50%); 
    text-align: center;
     padding: 20px 20px;
    color: #cccccc;
    background-color: #121212;
    font-size: 16px;
        border: 1px solid #74D1F6;
    transition: all 0.3s ease-in-out;
        max-width: 400;
}



.glow-on-hover {
        max-width: 320px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 180px;
    height: 40px;
    border: none;
    outline: none;
    color: #fff;
    border: 1px solid #74D1F6;
    border-color: #13E8E9;
    background: #111;
    cursor: pointer;
    position: absolute;
    top: 82%;           
    left: 50%;          
    z-index: 4;   

        transform: translate(-50%, -50%); 
    text-align: center;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #74D1F6, #adf277, #74D1F6, #74D1F6, #adf277, #e16bff, #74D1F6, #adf277, #e16bff);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;

}

.glow-on-hover:active {
    color: #3a3a3a
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #121212;
    left: 0;
    top: 0;

}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}