@font-face {
    font-family: "Roboto";
    src: url("assets/fonts/Roboto-Regular.ttf") format("woff2");
}
html{-ms-overflow-style:none;scrollbar-width:none;}html::-webkit-scrollbar{display:none;} /*the scrollbar killer3000*/
body {
    font-family: "Roboto";
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    color: #8cd492;
    background-color: #2a3b2b;
    background-image: url("/assets/background.png");
    background-size: cover;
    image-rendering: pixelated;
}

.socialicons {
    position: fixed; top: 12px; right: 12px;
    display: flex;
    gap: 10px;
    background-color: #1e1e1e63;
    padding: 10px; border-radius: 10px;
}
.socialicons .icon {
    width: 20px; height: 20px;
    opacity: 0.8;
    animation: MoveUpDown 5s ease-in-out infinite;
}
@keyframes MoveUpDown {
  0%, 100% {transform: translateY(3px);}
  50% {transform: translateY(-1px);}
}
.socialicons .icon:hover {opacity: 1; scale: 1.06;}

a {color:#8ccad4;text-decoration: none;}
a:visited {color: #bd8cd4;}
a:hover {color: #6accdb;}
a:active {color: #4000ff;}
.title {text-align: center;}

.mininote {
    font-size: 0.8em;
    opacity: 0.6;
    font-style: italic;
}

.contact td {font-weight: bold; padding: 0px 5px;}
.contact th {font-weight: normal; padding: 0px 5px;}
table, th, td {
  border: 1px solid #8cd49247;
  border-collapse: collapse;
}


.box {
    box-sizing: border-box;
    max-width: 800px;
    margin: 12px auto;
    margin-bottom: 0.5em;
    padding: 8px 24px;
    min-height: 25vh;
    background-color: #1e1e1e;
    border-radius: 12px;
}


.current-select {
    background-color: #5555555e;
    font-weight: bold;
}
.nav {
    box-sizing: border-box;
    max-width: 800px;
    margin: 48px auto 12px auto;
    display: flex;
    background-color: #333;
    border-radius: 12px;
    overflow: hidden;
}
.nav .item {
    padding: 10px 16px;
    color: white;
    text-decoration: none;
}
.nav .item:hover {background-color: #555555cd;
    animation: navHover 300ms ease forwards;}
@keyframes navHover {
    0% {transform: scale(1);}
    70% {transform: scale(1.12);}
    100% {transform: scale(1.08);}
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 1em;
    background-color: white;
    margin-left: 2px;
    vertical-align: bottom;
}
.typewriter {visibility: hidden;}
.typewriter.active {visibility: visible;}
img.typewriter {
    display: block;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 300ms ease-out;
}
img.typewriter.active {
    clip-path: inset(0 0 0 0);
}