html * {
  font-family: 'Times New Roman', serif;
}
h1 {
  text-align: center;
  font-size: 50px;
}
h2 {
  font-size: 30px;
}
p {
  font-size: 20px;
}
img {
  align: center;
}
.left-menue {
  width: 12%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: LightBlue;
  overflow-y: hidden;
}
.left-menue-item {
  padding: 10px 15px;
  text-decoration: none;
  font-size: 25px;
  color: black;
  display: block;
}
.left-menu-image {
  padding: 10px 15px;
  display: flex;
  justify-content: center;
}
.content {
  margin-left: 12%;
  padding-top: 10px;
  padding-left: 20%;
  padding-right: 20%;
} 

