/*Fonts Start*/
@font-face { /*Logo Font*/
  font-family: Nicholas;
  src: url("fonts/Nicholas.otf") format("opentype");
}

@font-face { /*Body Font*/
  font-family: 'Liberation Sans';
  src: url("fonts/LiberationSans.ttf") format("truetype");
}
/*Fonts End*/

body {
  font-family: "Liberation Sans", sans-serif;
  margin: 0px;
  padding: 0px;
}

.left {
  left: 0;
}
.right {
  right: 0;
}

.flexContainer {
  display:flex;
}

.sideDecor {
  height: 100vh;
  width: 8vw;
  background-image: url('img/animDeco.gif');
  position: absolute;
  top: 0;
  box-shadow: 0px 0px 20px 8px black inset;
  z-index: 2;
}
  
.mainContent {
  margin: auto;
  width: 84vw;
  height: 100vh;
  background-image: url('img/night 2.gif');
  color: white;
  text-align: center;
}

.logoText {
  margin-top: 90px;
  margin-bottom: 12px;
  font-size: 120px;
  font-family: "Nicholas", serif;
  text-shadow: 5px 6px black, 0px 0px 24px #1E7FCD;
}

.mainLinks {
  margin: 95px 17px 0px 17px;
  display: flex;
  justify-content: center;
  align-items: center;
}

table {
  width: 100%;
  table-layout: auto;
  margin-left: 17px;
  margin-right: 17px;
}

td {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.sectionButton {
  display: flex;
  border: 1px solid white;
  margin: 6px;
  width: 130px;
  height: 48px;
  font-size: 22px;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration-line: none;
  background-color: black;
}

.socials {
  border: 2px solid white;
  position: fixed;
  bottom: 50px;
  left: 25%;
  width: 50%;
}

footer {
  background-image: url('img/violetBar.gif');
  width: 84vw;
  position: fixed;
  bottom: 0px;
  color: white;
}

.changelog {
  border: 1px solid white;
  width: 50%;
  margin: 50px auto 0px auto;
  background-color: black;
}

.leftText {
  text-align: left;
  margin-left: 13px;
}

/* Change formatting when browsing in portrait mode (for mobile devices) */
@media screen and (orientation:portrait) {
  .sideDecor {
    display: none;
  }
  
  #linkStatusContainer {
    display: none;
  }
  
  .mainContent {
    width: 100vw;
  }
  
  footer {
    width: 100vw;
  }
}