/* https://www.w3schools.com/colors/colors_triadic.asp  mein Farbchema */
* {
  /* * gilt für alles */
  margin: 0;
  box-sizing: border-box; /* lässt die Box trotz verschiedenem Padding gleich groß bleiben*/
  font-family: Verdana;
  border-radius: 15px;
  line-height: 150%;
}

body {
  background-color: aqua;
  color: #0a2d3a;
}
.header {
  background-color: #3a8aaa;
  height: 15vh;
  color: #fcd33e;
  padding: 20px;
  text-align: center;
  background-image: url(Bilder/johak-schrift-weiss.png);
  background-repeat: no-repeat;
  background-position: right top;
  /*background-size: cover;*/
}
.content {
  background-color: #e1f3d5;
  height: 80vh;
}
.footer {
  background-color: #0a2d3a;
  height: 5vh;
  color: #fcd33e;
  padding: 2vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.vids {
  flex-direction: row;
  justify-content: space-around;
}

.sidebar {
  background-color: #d9176b;
  height: 100%;
  width: 20%;
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.maincontent {
  height: 100%;
  width: 80%;
  float: right;
  color: #0a2d3a;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 150%;
  gap: 30px;
  /* Hintergrundbildeinstellungen ohne Shorthandcode:
 background-image: url(Bilder/Daumen.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-attachment: local;
  background-size: 10%; */
  background: #fff5f5 url(Bilder/Daumen.png) right bottom no-repeat local;
  background-size: 10%;
}
#i {
  color: #0a2d3a;
  font-size: larger;
  font-weight: bold;
}
/*  hier werden meine Links nach meinen Wünschen formatiert*/
a:link {
  text-decoration: none;
}
a:visited {
  color: #fcd33e;
}
a:hover {
  color: #3a8aaa;
}
a:active {
  font-family: monospace;
  color: #0a2d3a;
  font-size: x-large;
}
.textinspalten {
  columns: 4;
  background-image: url(Bilder/hintergrund.webp);
  opacity: 0.4;
  background-size: cover;
  color: black;
}

h1 {
  font-size: 5vh; /* damit wird die Schrift an die größe des Fensters angepasst */
}
h2 {
  font-size: 3vh;
}
h3 {
  font-size: 2vh;
}
