General Style: 

h1, h2, h3 {
  color: #333;
}

p {
  line-height: 1.5;
}

html, body {
  display: block;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0px;
  padding: 0px;
  width: 100%;
}

.links_bar div {
  margin: 0;
  padding: 0;
  max-width: 100%;
}
  
.links_bar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: light_blue;
}

.links_bar a:link, a:visited {
  float:left;
  display: inline-block;
  background-color: white;
  color: black;
  text-align: center;
  text-decoration: none;
  width: 90px;
  height: 30px;
  padding: 15px 15px;
  border: 2px solid black;
}

.links_bar a:hover, a:active {
  float:left;
  background-color: blue;
  color: white;
}


classes: 

.wrapper {
  background-color: lightblue;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  height: 80%;
}

.links_bar {
  background-color: lightblue;
  margin: 5px;
  max-width: 100%;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-style: double;
  border-color: black;
  border-width: 5px;
}

.left, .right {
  background-color: lightblue;
  margin: 5px;
  max-width: 50%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-style: single;
  border-color: black;
  border-width: 2px;
}

.left {
  align-items: center;
  justify-content: center;
}

.profile-picture {
  border-radius: 50%;
}
