html, body{
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

body{
  background-image: url('https://marcsmind.neocities.org/assets/serene.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  backdrop-filter: blur(2px);
}

@font-face{
  font-family: "Frutiger";
  src: url("https://marcsmind.neocities.org/assets/segoe-ui-light.ttf");
}

@font-face{
  font-family: "PixeSans";
  src: url("https://marcsmind.neocities.org/assets/PixeSans.ttf");
}

@font-face{
  font-family: "Doto";
  src: url("https://marcsmind.neocities.org/assets/Doto.ttf");
}

.reallywide{
  width: 200px;
  height: 60px;
}

.container{
  background-color: rgba(0,0,120,0.1);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

#logo{
  cursor: pointer;
  width: 18%;
}

#status-container{
  width: 100%;
  height: 30px;
  backdrop-filter: blur(2px);
  background-color: rgba(0,0,70,0.5);
  box-shadow: 0 3px 7px rgba(0,0,70,0.5);
}

#header{
  background-image: linear-gradient(to bottom,rgba(85, 85, 105, 0.8) 0%, rgba(0,0,48,0.8) 50%);
  width: 100%;
  height: 60px;
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 5px gray;
  justify-content: center;
  box-shadow: 0 3px 7px rgba(0,0,48,0.8);
  gap: 5px;
}

#status{
  color: white;
  font-family: "Frutiger";
  font-size: 15px;
  text-shadow: 2px 3px 3px darkgrey;
  line-height: 0;
}

.Content{
  backdrop-filter: blur(2px);
  background-color: rgba(38, 18, 64, 0.5);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 2px 2px 2px black;
  border-right: solid 1px black;
  border-bottom: solid 1px black;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.text{
  font-family: "Frutiger";
  font-weight: lighter;
  color: white;
  text-align: center;
  text-shadow: 3px 3px 3px grey;
}

.tabtext{
  font-family: "Frutiger";
  font-weight: lighter;
  color: white;
  text-align: left;
  margin-left: 10px;
  text-shadow: 3px 3px 3px grey;
}

.tab{
  backdrop-filter: blur(2px);
  background-image: linear-gradient(to bottom,rgba(85, 85, 105, 0.8) 0%, rgba(0,0,38,0.8) 50% 90%);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 2px 2px 2px black;
  position: absolute;
  border-right: solid 1px black;
  border-bottom: solid 2px black;
  width: auto;
  height: 40px;
  line-height: 9px;
  max-width: 800px;
}

.nav-button{
  background-color: rgba(255,255,255,0.05);
  border: solid 0;
  color: rgba(255,255,255,0.7);
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  font-size: 25px;
  font-family: "Doto";
  font-weight: bold;
  height: 90%;
  text-shadow: 2px 3px 3px rgba(40,40,40,0.8);
  transition: 0.5s;
}

.nav-button:hover{
  cursor: pointer;
  color: rgb(255,140,0);
  background-color: rgba(255,255,255,0.1);
}