@font-face {
    font-family: 'Keyboard Plaque';
    font-style: normal;
    font-weight: normal;
    src: local('Keyboard Plaque'), url('keybp___.woff') format('woff');
    }
    
body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: #000;
    overflow: hidden;
    display: flex;
    text-size-adjust: auto;
    /*background-image: url("/img/stars.jpg");*/
    align-self: auto;
    font-family: sans-serif;
    justify-content: space-evenly;
    
}
html {
      width: 100vw;
  height: 100vh;
  margin: 0;
}

canvas {
  position: absolute;
  top:0;
  left:0;
  z-index:-99;
}
.logo-div {
  width: 15%;
  min-width: 150px;
  max-width: 250px;
  height: 100%;
  margin: 15px;
}
.logo {
  background-image: url("/img/logo-final.png");
  background-size: contain;
  background-repeat:no-repeat;
  width:100%;
  min-height: 250px;
  
}

ul{
    list-style-type: none;
        padding-left: 0;
}

.footer {
    font-size: 8pt;
    position: fixed;
    bottom: 0;
    font-style: italic;
      margin: 15px 30px auto;
  padding: 15px;
  border-radius: 15px;
  color:white;
  background: rgba(8,8,8,0.75);
  
  overflow-x: auto;
  overflow-y: auto;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.6);
}

h3 { 
 font-family: 'Press Start 2P', cursive; 
 font-size: 18pt;
 font-weight: normal;
 text-align: center;
}

.logo-text {
    margin: 85px 0px auto;
    font-family: 'Press Start 2P', cursive;
    color: #000;
    font-size:32pt;
    text-align: center;
    -webkit-text-fill-color: #000;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ccc;
}
.mainContent {
  margin: 15px 30px auto;
  padding: 15px;
  color:white;
  background: #000;
  overflow-x: auto;
  overflow-y: auto;
  height:98%;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.6);
}

.mainContentContainer{
	width:100%; 
	height: 95%;
}

.cards { width:25%; margin: 15px; }

.mainContent a {
    color:yellow !important;
    font-weight: bold;
    
}

/* ===== Navigation ===== */

.mainNav li{
margin: 30px 10px auto;
text-align: center;
}
.mainNav a{
    font-family: 'Special Elite', serif;
    text-decoration: none;
    color: #000;
    font-size:18pt;
    text-align: center;

 -webkit-animation: glow 3s ease-in-out infinite alternate;
 -moz-animation: glow 3s ease-in-out infinite alternate;
 animation: glow 3s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #ff0, 0 0 20px #ff0, 0 0 25px #ff0, 0 0 30px #ff0, 0 0 35px #ff0;
  }
  to {
    text-shadow: 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #fff, 0 0 25px #fff, 0 0 30px #fff, 0 0 35px #ff4f, 0 0 40px #fff;
  }
}
.mainNav a:hover{
    
    color: #ff0;
}

.navBox {
    display: none;
}

.cardBox {
text-align: center;
}

.vitaminText {padding: 10px 0px;}


/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #ffd500 #404040;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 10px;
  }

  *::-webkit-scrollbar-track {
    background: #404040;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #ffd500;
    border-radius: 10px;
    border: 0px none #ffffff;
  }
  
  
  
  
  /* ===== Typewriter ===== */


  .typewriter {
    color: #fff;
    font-size: 18pt;
    font-family: "Press Start 2P",Courier New, monospace;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid orange; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em; /* Adjust as needed */
    animation: 
      typing 3.5s steps(30, end),
      blink-caret .5s step-end infinite;
  }
  
  /* The typing effect */
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  
  /* The typewriter cursor effect */
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange }
}