html {
    background-color: #151515;
    color:white;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

:root {
  --textCol: rgba(255, 255, 255, 0.2);
}

body {
    margin: 0;
}

a {
    color: blue;
    text-decoration: none;
}

.header {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: black;
    padding: 10px;
    text-align: center;
  }
  
  #navbar {
    overflow: hidden;
    background-color: #333;
  }
  
  #navbar a {
    margin-left: 9px;
    margin-right: 9px;
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;

    animation: shrink;
    animation-timing-function: ease-in-out;
    animation-duration: 0.25s;
    animation-fill-mode: backwards;
  }
  
  #navbar a:hover {
    background-color: #555;
    animation: grow;
    animation-timing-function: ease-in-out;
    animation-duration: 0.25s;
    animation-fill-mode: forwards;
  }

  #navbar a.active {
    background-color: rgb(0, 150, 0);
    color: white;
  }

  #navbar a.active:hover {
    background-color: rgb(0, 200, 0);
    color: white;
  }

  #navbar a.right {
    background-color: rgb(0, 150, 0);
    color: white;
    float: right;
  }

  #navbar a.right:hover {
    background-color: rgb(0, 200, 0);
    color: white;
  }

  @keyframes grow {
      from { padding: 14px 16px; margin-left: 9px; margin-right: 9px;}
      to {    padding: 14px 25px; margin-left: 0px; margin-right: 0px;}
  }

  @keyframes shrink {
    from { padding: 14px 25px; margin-left: 0px; margin-right: 0px;}
    to {    padding: 14px 16px; margin-left: 9px; margin-right: 9px;}
}

.leftText {
  margin-left: 10px;
  margin-top: 10px;

  text-align: left;

  color: white;
  line-height: 0.7;
  border: 10px;
  border-style: hidden hidden hidden solid;
  /*border-radius: 15px;*/
  border-width: 5px;
  /*border-left: 5px;
  border-right: 5px;
  border-top: 5px;
  border-bottom: 5px;*/

  border-color: var(--textCol);
  width: max-content;
  height: max-content;
  background-color: var(--textCol);
  padding-left: 10px;
  padding-right: 10px;

  padding-top: 2px;
  padding-bottom: 2px;
}

.rightText {
  margin-right: 10px;
  margin-top: 10px;

  text-align: right;
  float: right;

  color: white;
  line-height: 0.7;
  border: 10px;
  border-style: hidden solid hidden hidden;
  /*border-radius: 15px;*/
  border-width: 5px;
  /*border-left: 5px;
  border-right: 5px;
  border-top: 5px;
  border-bottom: 5px;*/

  border-color: var(--textCol);
  width: max-content;
  height: max-content;
  background-color: var(--textCol);
  padding-left: 10px;
  padding-right: 10px;

  padding-top: 2px;
  padding-bottom: 2px;
}

.centerText {
  margin-left: 10px;
  margin-top: 10px;

  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;

  color: white;
  line-height: 0.7;
  border: 10px;
  border-style: hidden solid hidden solid;
  /*border-radius: 15px;*/
  border-width: 5px;
  /*border-left: 5px;
  border-right: 5px;
  border-top: 5px;
  border-bottom: 5px;*/

  border-color: var(--textCol);
  width: max-content;
  height: max-content;
  background-color: var(--textCol);
  padding-left: 10px;
  padding-right: 10px;

  padding-top: 2px;
  padding-bottom: 2px;
}

.rightTextSpace{
  margin-right: 10px;
  margin-top: 10px;

  text-align: right;
  float: right;

  color: white;
  line-height: 0.7;
  border: 10px;
  border-style: hidden solid hidden hidden;
  /*border-radius: 15px;*/
  border-width: 5px;
  /*border-left: 5px;
  border-right: 5px;
  border-top: 5px;
  border-bottom: 5px;*/

  border-color: var(--textCol);
  width: max-content;
  height: max-content;
  background-color: var(--textCol);
  padding-left: 10px;
  padding-right: 10px;

  padding-top: 2px;
  padding-bottom: 2px;

  display: inline-block;
}

.leftTextSpace{
  margin-left: 10px;
  margin-top: 10px;

  text-align: left;

  color: white;
  line-height: 0.7;
  border: 10px;
  border-style: hidden hidden hidden solid;
  /*border-radius: 15px;*/
  border-width: 5px;
  /*border-left: 5px;
  border-right: 5px;
  border-top: 5px;
  border-bottom: 5px;*/

  border-color: var(--textCol);
  width: max-content;
  height: max-content;
  background-color: var(--textCol);
  padding-left: 10px;
  padding-right: 10px;

  padding-top: 2px;
  padding-bottom: 2px;

  display: inline-block;
}