* {
  margin: 0;
  box-sizing: border-box;
  font-family: "Times New Roman", Times, serif;
  color: #def4fd;
}

body {
  background-color: lightblue;
}
.header {
  background-color: #67afcb;
  height: 15vh;
  text-align: center;
  background-image: url("bilder/johak-weiß.png");
  background-repeat: no-repeat;
  background-position: top right;
}
.content {
  background-color: #347b98;
  height: 80vh;
}
.footer {
  background-color: #1a3e4c;
  height: 5vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
img {
  float: left;
}
.sidebar {
  background-color: #092834;
  height: 100%;
  width: 25%;
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.main-content {
  background-color: #2c7fa0;
  height: 100%;
  width: 75%;
  float: right;
  padding: 20px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
  /*Hintergrundbildeinstellungen OHNE SHORTHAND-CODE:display:
  background-image: url("bilder/Daumen_Hoch_Transparent.png");
  background-attachment: local;
  background-position: top right;
  background-repeat: no-repeat;*/
  background: url("bilder/gamskar.webp") local top right no-repeat #2c7fa0;
  background-size: 15%;
}
p {
  color: #e4f1f6;
  text-align: center;
}
h1 {
  font-size: 5vh;
}
h2 {
  font-size: 4vh;
}
h3 {
  font-size: 3vh;
}

/* hier werden meine Links nach meinen Wünschen formatiert */

a:link {
  color: #67afcb;
  text-decoration: none;
  font-size: 3vh;
}

a:visited {
  color: #347b98;
  text-decoration: none;
}

a:hover {
  color: #1a3e4c;
}

a:active {
  color: #092834;
}
.textinspalten {
  columns: 4;
  line-height: 150%;
  background: url("bilder/gamskar.webp");
  background-size: cover;
  opacity: 0.7;
  color: black;
}
