*{
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

a{
  color: white;
}

body{
  background-color: #030a17f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

fieldset{
  border: 0.5vh solid;
  background-color: #8dafd22e;
  border-radius: 0.75vw;
  border-color: #ffffff91;
  margin-top: 2vh;
}

figcaption{
  color: white;
}

fieldset img{
  border-radius: 25px;
}
.link{
  text-align: center;
}

.link a{
  color: white;
  text-decoration: none;
  background-color: #8dafd22e;
  text-align: center;
}

h1, h2, h3, h4, p{
  color: white;
}

p{
  font-size: 15pt;
}

main{
  min-height: 90%;
}

footer{
  margin-top: auto;
}

footer a{
  text-align: center;
  color:white;
}

/* Navbar container */
.navbar {
    overflow: hidden;
    background-color: #8dafd22e;
    text-align: center;
  }
  
  /* Links inside the navbar */
  .navbar a {
    width: 50%;
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* The dropdown container */
  .dropdown {
    overflow: hidden;
    width: 50%;
  }
  
  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }
  
  /* Add a red background color to navbar links on hover */
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #1e3050;
  }
  
  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #8dafd22e;
    min-width: 50%;
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    width: 100%;
    float: none;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Add a blueish background color to dropdown links on hover */
  .dropdown-content a:hover .dropdown-content a:hover{
    background-color: #1e3050;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  #hamburger-icon{
    display: none;
  }

  .wrapper{
    margin-right: 5%;
    margin-left: 5%;
    
    max-width: 100%;
    min-height: 100%;
    padding-right: 10px;
    padding-left: 10px;
  }

  .division {
    width: 100%;
    height: 6px;
    margin-top: 5vh;
    margin-bottom: 5vh;
    background-color: #ffffff91;
    border-radius: 12px;
}

.typing_container{
  min-width: 100%;
  text-align: center;
}

.typing_container .typing{
  font-size: 36px;
  min-height: 10vh;
  color: white;
  line-height: 10vh;
}


.dropbtn {
  background-color: #8dafd22e;
  color: white;
  padding: 16px;
  font-size: 20px;
  border: none;
}

/* The container <div> - needed to position the dropup content */
.dropup {
  position: relative;
  display: inline-block;
}

/* Dropup content (Hidden by Default) */
.dropup-content {
  display: none;
  position: absolute;
  bottom: 50px;
  background-color: #8dafd22e;
  min-width: 160px;
  z-index: 1;
}

/* Links inside the dropup */
.dropup-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropup-content a:hover{
  background-color: #1e3050;
}

/* Show the dropup menu on hover */
.dropup:hover .dropup-content {
  display: block;
}

/* Change the background color of the dropup button when the dropup content is shown */
.dropup:hover .dropbtn {
  background-color: #1e3050;
}

.enemy img{
  margin-top: 1vh;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 25px;
  max-width: 90%;
}

.enemy figcaption{
  margin-top: 0.5vh;
  text-align: center;
}


.indexcontainer img{
  margin-top: 1vh;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 25px;
  max-width: 90%;
}

.indexcontainer figcaption{
  margin-top: 0.5vh;
  text-align: center;
}

.section img{
  margin-top: 1vh;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 25px;
  max-width: 90%;
}

.section figcaption{
  margin-top: 0.5vh;
  text-align: center;
}

pre.cscode {margin:0em; overflow:auto; background-color:#ffffff; text-wrap: wrap; text-align: left; padding: 0%; border-radius: 5px;}
.cscode code {font-family:Consolas,"Courier New",Courier,Monospace; font-size:10pt; color:#000000;}
.cscode .key {color:#0000ff;}
.cscode .com {color:#008000;}
.cscode .str {color:#a31515;}

@media screen and (max-width: 1000px) {/* Änderungen bei 850px Abmessung des Empfängerbildschirms*/

  .navbar{
    display: none;
  }

  #hamburger-icon{
    background-color: #8dafd22e;
    border-radius: 1vw;
    padding: 2px;
    margin: auto 0;
    display: none;
    cursor: pointer;
  }

  .hamburger-inner{
    padding: 1vh 0;
    margin-left: 1vw;
  }

  .hamburger-inner div {
    width: 5vw;
    height: 0.3vh;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
  }
  
  .open .bar1 {
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
  }
  
  .open .bar2 {
    opacity: 0;
  }
  
  .open .bar3 {
    -webkit-transform: rotate(45deg) translate(-6px, -8px);
    transform: rotate(45deg) translate(-6px, -8px);
  }

  nav ul{
    list-style: none;
    height: 100%;
    display:flex;
    align-items: center;
    justify-content: space-around;
  }

  nav ul a{
    color: white;
    text-decoration: none;
    font-size: 35pt;
  }

  nav ul li{
    line-height: 7.5vw;
    min-height: 7.5vw;
    margin-top: 2px;
    padding: 5px;
    text-decoration: none;
    background-color: #8dafd22e;
  }

  nav ul li:hover{
    transform: scale(1,1);
    transition: 0.3s;
  }

  .mobile-menu{
    display:none;
    position: absolute;
    top: 50px;
    left: 0;
    height: calc(100vh - 50px);
    width: 100%;
    text-align: center;
  }

  .open .mobile-menu{
    display: contents;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  #hamburger-icon{
    display: block;
  }

  .typing_container .typing{
    font-size: 36px;
    min-height: 5vh;
    color: white;
    line-height: 5vh;
  }

  .indexcontainer img{
    min-width: 100%;
  }

  h1{
    font-size: 50pt;
  }

  h2{
    font-size: 40pt;
  }

  h3, h4{
    font-size: 30pt;
  }


  p{
    font-size: 25pt;
  }

  
  figcaption{
    font-size: 20pt;
  }

  li{
    font-size: 25pt;
    color: white;
  }

  .dropup{
    margin-top: 5vh;
    min-width: 160px;
    margin-bottom: 5vh;
  }

  .dropup-content{
    min-width: inherit;
    font-size: 35pt;
    max-width: 31vw;
    position: static;
  }

  .dropbtn{
    font-size: 40pt;
  }

  .cscode code {font-size:9pt;}
  
}




