.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  }
  

.all-text {
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 275;
  font-style: normal;
}

.base-content-box {
  background: rgba(255,255,255,0.3);
  border: 0pt solid white;
  border-radius: 10px;
  margin-bottom: 5px;
  border-bottom: 1pt solid rgba(255,255,255,0.5);
}

.ontop-content-box {
  background: rgba(255,255,255,0.0);
  border: 0pt solid white;
  border-radius: 10px;
  margin-bottom: 5px;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 145px;
  font-size: 30pt;
  }
  

.header h1 {
  font-family: "Badeen Display", system-ui;
  font-weight: 400;
  font-style: normal;
}

.main-body {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;

}

.main-text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;

  width: calc(100vw - 200px);
  height: calc(100vh - 150px);
  margin-left: 5px;   
}

.main-text p {
  display: flex;
  font-size: 15pt; 
  padding-left: 16px;
  padding-top: 0px;
  color: black;
}

.sidebar {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 200px;
  height: calc(100vh - 150px);

}

.sidebar-element {
  width: 200px;
  border-bottom: 1pt solid rgba(255,255,255,0.5);
}

.sidebar-element:hover {
  background: rgba(255,255,255,0.5)   
}

.sidebar-element a {
  text-decoration: none; 
  display: block;
  padding: 16px;
  font-size: 15pt;
  color: black;
}

body {
  background-image: url("./images/from-this-moment.png");
  background-size: 100% auto;
  background-color: white;
  color: black;
  font-family: Verdana;
}