body {
  margin: 0;
  font-family: "Open Sans", serif;
  background-color: rgb(52, 55, 31);
}

.header-image {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.container {
  font-size: 18px;
  position: absolute;
  right: 32px;
  left: 32px;
  top: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.menue-link {
  color: white;
  text-decoration: none;
  margin-left: 16px;
}
.menue-link:hover {
  text-decoration: underline;
}

.logo {
  position: absolute;
  top: 30px;
  left: 30px;
  height: 140px;
  width: 160px;
}

.title {
  position: absolute;
  font-size: 70px;
  font-weight: 700;
  color: white;
  left: 200px;
  top: 40px;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
}

.sub-title {
  position: absolute;
  font-size: 25px;
  color: white;
  left: 205px;
  top: 120px;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.8);
}

.menue {
  font-size: 30px;
  position: absolute;
  left: 50px;
  top: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.main-menue {
  color: white;
  text-decoration: none;
  margin: 20px;
  padding: 5px;
  border-radius: 5px;
}
.main-menue:hover {
  background-color: rgb(122, 124, 123);
}

.headline {
  position: absolute;
  left: 100px;
  top: 250px;
  color: white;
  font-size: 50px;
  width: 1100px;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
}

.discription {
  height: 300px;
  padding: 30px 100px;
}

.aboutmeimg {
  height: 20vh;
  width: 20vh;
}

.linkimg {
  height: 50px;
  width: 50px;
}

.linkimg:hover {
  cursor: pointer;
}

* {
  box-sizing: border-box;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
  float: left;
  width: 75%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
  background: rgb(144, 148, 146);
  padding: 20px;
  margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: rgb(144, 148, 146);
  margin-top: 20px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn,
  .rightcolumn {
    width: 100%;
    padding: 0;
  }
}
