/* BASE COLORS */
:root {
  --glaucous: #5E82A7;  /* headings/scrollbar */
  --spacecadet: #16294D;  /* content bg, nav buttons */
  --lapislazuli: #175896; /* background, a one buttons */
  --seasalt: #F7F9FB; /* text */
  --munsell: #39939F; /* dotted lines/borders */
  --gunmetal: #1A3943;  /*  */
  --current: #2F6871; /*  */
}

/* Replace everything beyond this point with strawberry base code */

    /* FONTS */
    
    @font-face {p
      font-family: "";
      src: url("") format("truetype");
  }
  
  /* INNER PAGES */
  
  html {
    scrollbar-color: var(--glaucous);
    scrollbar-width: thin;
    }
    
  ::selection{
    background:var(--lapislazuli);
    color:var(--glaucous);
  }
  
  /* WEB CARBON BADGE */
  
  #wcb.carbonbadge.wcb-d {
    --b1: darkslateblue;
    --b2: lavender;
  }
  
  #wcb.wcb-d #wcb_2 {
    color: var(--seasalt)!important;
  }
  
  #wcb #wcb_g {
    color: black;
  }
  
  /* WEB CARBON BADGE END */
  
  body {
      background-color: var(--lapislazuli);
      background-image: url(/assets/Flugzeuge.png);
      background-repeat:no-repeat;
      background-position: center;
      background-attachment: fixed;
      background-size: cover;
  }
  
  nav {
      border-bottom-style: dotted;
      border-color: var(--munsell);
  }
  
  h1 {
      font-family: "trebuchet ms","Tahoma","Verdana", "Sans-serif";
      font-size: 72pt;
      text-align: center;
      color: var(--glaucous);
  }
  
  h2 {
      font-family: "trebuchet ms","Tahoma","Verdana", "Sans-serif";
      font-size: 28pt;
      text-align: center;
      color: var(--glaucous);
    }
  
  #content {
      background-color: var(--spacecadet);
    font-family: "trebuchet ms","Tahoma","Verdana", "Sans-serif";
      font-size: 14pt;
      color: var(--seasalt);
    max-width: 900px;
      height: inherit;
    margin-left: auto;
    margin-right: auto;
      margin-bottom: 2%;
    padding-top: 1%;
    padding-bottom: 3%;
    padding-left: 5%;
    padding-right: 5%;
    position: relative;
      border-radius: 25px;
      border-color: var(--munsell);
      border-style: solid;
  }
  
  #content img {
    max-width: 100%
  }
  
  #invisiblecontent {
    font-family: "Trebuchet ms","Tahoma","Verdana","Sans-serif";
      font-size: 14pt;
      color: var(--seasalt);
    max-width: 100%;
      height: inherit;
    margin-left: -0.6%;
    margin-right: -0.6%;
      margin-bottom: 0%;
    padding-top: 0%;
    padding-bottom: 3%;
    padding-left: 10%;
    padding-right: 10%;
    position: relative;
  }
  
  /* for making a nice little div box to put things inside of */
  
  #about {
      background-color: var(--glaucous);
      padding: 20px;
      border-radius: 25px;
  }
  
  /* link styles */
  
  div.links {
      background-position: center;
      background-attachment: fixed;
      background-size: cover;
      max-width: 750px;
      height: inherit;
      margin-left: auto;
      margin-right: auto;
      margin-top: -5%;
      margin-bottom: -5%;
      padding: 5%;
      position: relative;
  }
  a.navlink:link, a.navlink:visited  {
      display: block;
      padding: 15px;
      margin: 20px;
      width: inherit;
      height: inherit;
      text-decoration: none;
      font-family: "trebuchet ms","tahoma","Verdana","Sans-serif";
      font-size: 22px;
      color: var(--seasalt);
      background-color: var(--spacecadet);
      border-radius: 20px;
      transition: all .2s ease-in-out;
          
  }

  a.navlink:hover, a.one:active {
    color: var(--glaucous);
  }
  
  .navlink {
      background-color: var(--spacecadet);
      display: block;
      padding: 20px 20px 20px 20px;
      width: inherit;
      height: inherit;
      border-radius: 25px;
      text-align: center;
      transition: all .2s ease-in-out;
  }
  
  .roundup-navlink {
      background-color: var(--spacecadet);
      display: block;
      padding: 20px 20px 20px 20px;
      margin-top: 10%;
      width: inherit;
      height: inherit;
      border-style: solid;
      border-color: white;
      border-radius: 25px;
      transition: all .2s ease-in-out;
  }
  
  a.one:link, a.one:visited {
      color: var(--seasalt); 
      padding: 12px;
      text-align: center;
      text-decoration: none;
      display: inline-grid;
      font-family: "trebuchet ms","tahoma","Verdana","Sans-serif";
      margin: 3px;
      position: inherit;
      font-size: 22px;
      background-color: var(--lapislazuli);
      border-radius: 10px;
      transition: all .2s ease-in-out;
          
  }
  
  a.one:hover, a.one:active {
    color: var(--glaucous);
  }
  
  a.two:link, a.two:visited {
      color: var(--glaucous);
  }
  
  a.two:hover, a.two:active {
      color:var(--glaucous);
  }
  
  a.footer:link, a.footer:visited {
      color: white;
  }
  
  /* footer */
  
  footer {
    display: block;
    font-family: sans-serif;
      color: var(--seasalt);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3%;
    text-align: center;
    line-height: 100%;
    position: relative;
  }
  
  /* images */
  
  .branchtop {
    top: 0;
    left: 0;
    position: fixed;
    margin: 0;
    max-width: 45%;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
  }
  
  .branchbottom {
    bottom: 0;
    right: 0;
    position: fixed;
    margin: 0;
    max-width: 45%;
    clip-path: polygon(60% 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .branchbottomreverse {
    bottom: 0;
    right: 0;
    position: fixed;
    margin: 0;
      max-width: 40%; 
  }
  
  .row {
      display: flex;
      flex-wrap: wrap;
      padding: 0 4px;
  }
  
  .pagedoll {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    animation-iteration-count: infinite; 
    animation-name: floating; 
    animation-duration: 3s;
}
.pagedoll img {
    width: 200px;
    transition: all .2s ease-in-out;
}
  
  /* Create four equal columns that sits next to each other */
  .column {
    flex: 30%;
    max-width: 33%;
    padding: 3px 6px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
  }
  
  /* freewall */
  
  .free-wall {
          margin: 15px;
  }
  
  .brick {
    max-width: 400rem;
    background: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
    border-radius: 3px;
    color: #333;
    border: none;
  }
  
  .info {
    padding: 15px;
  }
  
  .brick img {
    margin: 0px;
    padding: 0px;
    display: block;
  }
  
  .brick .img {
    width: 100%;
    max-width: 100%;
    display: block;
  }
  
  .brick h3, .brick h5 {
    text-shadow: none;
  }
  
  div.gallery {
    margin: 5px;
    width: 100%;
  }
  
  .gallery img {
      max-width: 100%
  }

/*Animations */

@keyframes floating { 
    50% { transform: translateY(-5px); } 
}
@keyframes floatingalt {
    0% { transform: translateY(-5px); } 
    50% { transform: translateY(0px); } 
    100% { transform: translateY(-5px); } 
}
@keyframes wiggle {
    0% { transform: rotateZ(0deg); }
    25% { transform: rotateZ(2deg); }
    50% { transform: rotateZ(0deg); }
    75% { transform: rotateZ(-2deg); }
    100% { transform: rotateZ(0deg); }
}

  /* Responsive layout - makes a two column-layout instead of four columns. DO NOT DELETE, YOU SILLY GOOSE!! */
  
  @media screen and (max-width: 750px) {
    .column {
      flex: 50%;
      max-width: 50%;c
    }
  }
  
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 1700px) {
    .pagedoll img {
        width: 200px;
    }
}
@media (max-width: 1300px) {
    .pagedoll img {
        width: 100px;
    }
@media screen and (max-width: 750px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
  .pagedoll {
        display: none;
    }
}
  
  @media only screen and (max-width: 750px) {
                  #flex {
                      flex-wrap: wrap;
                  }
  
                  aside {
                      width: 100%;
      }}