html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden; /* Hide scrollbars */
  background: transparent;
  background-color: rgb(0, 0, 0);
}

#navbar {
  padding-top: 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  opacity: 0;
  animation: fadein 1s forwards;
  animation-delay: 2s;
}

#navlinks {
  align-self: center;
  color: white;
}

a.navlink {
  text-decoration: none;
  margin-left: 15px;
  color: rgb(200, 200, 200);
  transition: all 0.2s;
}

.center-message {
  font-family: monospace;
  font-size: 18px;
  color: white;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-image: url("pngs/Synapse X 3.0 Intro.png");
  background-repeat: repeat;
  background-size: cover;
}

.logo {
  position: fixed;
  top: 10%;
}

.logo img {
  width: 135px;
  height: 135px;
  filter: drop-shadow(0 1px 3px #141414);
}
