* {
  margin: 0;
  padding: 0;
}

html {
  font-family: sans;
}

body {
  width: 95%;
  border: 1px solid whitesmoke;
  margin: auto;
  margin-top: 0.2rem;
  color: #ECEBFF;
  background-color: #0E0E26;
}

/* ---- CENTER ---- */

#center {
  display: flex;
  margin: auto;
  min-height: 100vh;
  width: 100%;
}

/* ---- SIDEBAR ---- */

#sidebar {
  border-right: 1px solid whitesmoke;
  width: 15%;
  min-height: 100%;
}

/* ---- MAIN ---- */


/* ---- HEADER + MENU ---- */
.topbanner {
  padding: 1rem;
  text-align: center;
  background-image: url('../img/starbanner.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.topmenu {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-evenly;
}

.topmenu-link {
  color: floralwhite;
  width: 100%;
  text-align: center;
  border: 1px solid whitesmoke;
  margin: auto;
  text-decoration: none;
  padding: 0.8rem 0;
}