@font-face {
  font-family: 'Amiga Forever Pro2';
  src: url('./amiga4ever pro2.ttf');
  font-weight: 400;
  font-style: normal;
}

@layer demo {
  .highlighted-text-shadow {
    text-shadow:
      /* regular text-shadow */
      0 .15ch 15px var(--shadow),
      /* text-shadow highlight */
      0 -2px 0 var(--highlight);
  }
}

@layer demo.support {
  :root {
    --hue: 160; /* change me */
    --bg: oklch(35% .3 var(--hue));
    --text: oklch(85% .1 var(--hue));
    --shadow: oklch(25% .2 var(--hue));
    --highlight: oklch(98% .05 var(--hue));
  }

html,
body {
    width: 100%;
    min-height: 100%;
    /* overflow: hidden; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

#ethertxt {
    text-align: center;
	text-shadow: 3px 3px 5px #000000;
	font-size: 24pt;
	padding-top: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

#background {
    position: fixed;
    right: 0; 
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    width: 100vw; 
    height: 100vh;
    z-index: -100;
    object-fit: cover;
}

#links {
    text-align: center;
}


html {
    block-size: 100%;
}

body {
    min-block-size: 100%;
    font-family: 'Amiga Forever Pro2', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "BLED" 0,
        "SCAN" -40;
    place-content: center;
}
  
img {
    width:auto;
    height:auto;
    max-width: 100%;
    max-height: 100%;
}
  
#header {
    text-align: center;
    margin-top: -5em;
}
  
a {
    text-decoration: none;
    color: #33FF00;
}
  
.mlink {
    z-index: 90;
}

.cathode {
    text-shadow: none;
    background: url("cathoderay.gif") top;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-blend-mode: screen;
	z-index: 99;
}

.cathode2 {
    text-shadow: none;
    background: url("cathoderay2.gif") top;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	z-index: 99;
}

.cathode3 {
    text-shadow: none;
    background: url("cathode4.gif") top;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	z-index: 99;
	mix-blend-mode: difference;
	opacity: 0.9;
}

.cathode4 {
    text-shadow: none;
    background: url("cathode5.gif") top;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	z-index: 99;
	mix-blend-mode: difference;
	opacity: 0.9;
}
  
#ethlogo {
    mix-blend-mode: normal;
}
  
h1 {
    color: white;
    font-size: 4.3em;
    /* letter-spacing: -.15ch; */
    /* line-height: 1.1; */
    opacity: 0.7;
    /* font-optical-sizing: auto; */
    font-weight: 400;
    font-style: normal;
    margin-bottom: -0.7em;
    /*letter-spacing: 0.1em;*/
    /* line-height: 150%; */
    background-blend-mode: multiply;
}
  
h1:hover {
    font-weight: 600;
    opacity: 1;
    color: #9ff881;
    filter: hue-rotate(90deg);
}

a:active {
    font-weight: 600;
    opacity: 1;
    color: #FFFFFF;
}
  
i {
    color: white;
    font-size: 1.1em;
    /* padding-top: -0.6em; */
    position: relative;
    top: -0.1em;
    left: -0.5em;
    text-shadow: none;
    background-blend-mode: screen;
    mix-blend-mode: screen;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #000000AA;
    opacity: 1.0;
}
  
small {
    max-inline-size: 30ch;
}

.sixty4txt {
  font-family: 'Amiga Forever Pro2', sans-serif;
  font-weight: 400;
  font-style: normal;
}
  
@media screen and (max-width: 1000px) {
    h1 {
        line-height: 100%;
    }
    img #ethlogo {
   
    }
    #links {
        margin-top: 5em;
    }
}

@media screen and (max-width: 1600px) {
   img #ethlogo {
   
   }
}



@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0% {
	    transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}

}



