body {
  background-color: black;
  font-family: helvetica;
  color: whitesmoke;
}

h1 {
  text-align: center;
  margin-top: 25vh;
  margin-bottom: 10px;
  font-size: 80px;
}

h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 50px;
}

h3 {
  padding-top: 80px;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
}

h4 {
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  color: firebrick;
  margin-top: 15px;
  margin-bottom: 15px;
}

h5 {
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  padding: 40px;
  margin: 0px;
}

a {
  color: whitesmoke;
  -webkit-user-select: none;
  text-decoration: none;
}

p {
  text-align: center;
  font-size: 20px;
  margin-left: 30px;
  margin-right: 30px;
}

.Menu-Bar-Item {
  padding-left: 30px;
  padding-right: 30px;
}

.Menu-Bar-Item-Content-Text {
  font-size: 20px;
  transition-duration: 0.5s;
  box-shadow: 0px 2px transparent;
}

.Menu-Bar-Item-Content-Text:hover {
  color: grey;
  box-shadow: 0px 2px red;
}

.Center-Container {
  display: flex;
  justify-content: center;
}

.Center-Container-Vert {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Table-Collection {
  width: 90%;
  table-layout: fixed;
  border-spacing: 20px;
  margin-bottom: 100px;
}

.List-Item {
  background-color: #101010;
  min-height: 200px;
  border-radius: 16px;
  border-width: 1px;
  border-style: solid;
  border-color: #202020;
  vertical-align: top;
}

.List-Item-Dark {
  background-color: black;
  min-height: 200px;
  border-radius: 16px;
  border-width: 1px;
  border-style: solid;
  border-color: #202020;
  vertical-align: middle;
  justify-content: center;
  transition-duration: 0.5s;
}

.List-Item-Dark:hover {
  border-color: red;
}

.Body-Section-Light {
  background-color: #101010;
  margin: 0px;
}

#Main-Body-Wrapper {
  margin-bottom: 200px;
}

#Menu-Bar-Container {
  height: 50px;
}

#Menu-Bar-Table {
  width: auto;
  height: 100%;
  margin: auto;
}

#Menu-Bar-Logo {
  height: 40px;
  margin: auto;
  content: url("../Media/Images/Logo_Silhouette_Rounded_Red_512.png");
}

#Start-Project-Button {
  font-size: 15px;
  margin: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 16px;
  border-width: 0;
  background-color: red;
  transition-duration: 0.5s;
}

#Start-Project-Button:hover {
  box-shadow: 0px 0px 5px grey;
}

#Start-Project-Button:active {
  box-shadow: 0px 0px 10px 0px black inset;
}

#Title-Wrapper {
  padding-bottom: 150px;
}