@font-face {
  font-family: nexa-rust-sans;
  src: url('https://drift-universe.neocities.org/nexa-rust-sans.otf');
}

body {
  background-color: black;
  color: white;
  font-family: Garamond;
}

#main {
  max-width: 900px;
  position: relative;
  margin: auto;
}

#header {
  position: absolute;
  width: 900px;
  top: 0;
  height: 190px;
  background-color: grey;
}

#sidebar {
  position: absolute;
  top: 190px;
  left: 0;
  width: 250px;
  min-height: 1080px;
  background-color: green;
}

#content {
  position: absolute;
  top: 190px;
  left: 250px;
  width: 650px;
  min-height: 1080px;
  background-color: red;
}

.tabs {
  position: relative;
  font-family: nexa-rust-sans;
  font-size: 18px;
  margin-bottom: 50px;
  left: 10px;
  top: 40px;
  cursor: pointer;
}

.tabs a {
  display: inline-block;
  position: relative;
  transition: 0.5s;

}

.tabs:hover a {
  padding-left: 25px;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: white;
}