/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
.container { display: inline-block; }

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.text {
  font-size: 2em;
  letter-spacing: 20px;
  font-family: "Tiny5";
  text-align: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  animation: 
    typing 1.5s,
    blink-caret .75s step-end infinite;
  
}



/* Three image containers (use 25% for four, and 50% for two, etc) */
.row {
  display: flex;
  width: 6.5%;
  margin-left: 36.7%;
  margin-right: auto;
}

.column {
  flex: 2%;
  padding: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}



/* typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

body {
  background-color: white;
  color: black;
  font-family: "Tiny5", sans-serif;
  font-weight: 400;
  font-style: normal;
  /*sidebar test */
  margin-right: 42px;/* At least 42px for body elements to stay visible */
  z-index: -2;
  
}

nav{
  display: inline-block;
  right: 0;
  top: 25%;
  z-index: 99;
  background-color: black;
  position: fixed;
  padding: 9px;
  height: 40%;
  width: 125px;
  vertical-align: middle;
  align-items: center;
  
}

.navlink{
  color: black;
  background-color: white;
  display: block;
  padding: 5px;
  margin: 8px 5px 8px;
}
