@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
html,body { 
    height: 100%; 
    margin: 0px; 
    padding: 0px; 
}

body, nav {
    background: #006777;
    margin: 0;
    font-family: lato;
    color:white;
    line-height: 1.5;
}

::placeholder {
    color: white;
    opacity: 1;
    font-size: 18px;
  }

.navbar .container {
    width: 100%;
}

.navbar .container .imageLogo{
    padding: 1em 0 0 1em;
   width: 20%;
   max-width: 120px;
    float: left;
}

.navbar .container .navText{
    float: right;
    display: flex;
    list-style-type:none;
    height: inherit;
    font-size: 13px;
    padding: 2.5em 0.5em 0 1em;
     margin:0;
    
}

.navbar .container .navText li a{
    padding: 0 1em 0 1em;
    list-style-type:none;
    text-decoration: none;
    color: white;
}

.content{
    position:relative;
    clear:both;
    overflow:auto;
}
  
  .bottom-bar {
    clear: both;
    overflow: auto;
    position: relative;
    text-align: right;
    bottom: 0;
    right:0;
    padding: 0 1em 1em 0;
  }
  
  .bottom-bar a {
    color: white;
    padding: 0 0.5em;
    text-decoration: none;
    font-size: 10px;
  }
  .bottom-bar p {
    font-size: 10px;
  }

  .contactSection {
      clear: both;
      text-align: center;
  }

  .contactSection .contactHead{
padding: 2em 0 0 0;
  }

  .contactSection .contactFields input {
    background: #006777;
    color: white;
    padding: 1em;
    border: 1px solid white;
    border-radius: 1em;
    width: 50%;
  }

  .contactSection .contactFields textarea {
    background: #006777;
    color: white;
    padding: 1em;
    border: 1px solid white;
    border-radius: 1em;
    width: 50%;
  }
  
  .contactSection .contactFields .button #abschicken {
    border-radius: 1em;
    padding: 1em;
    width: 40%;
    border: 1px solid #006777;
    background: white;
    color: #006777;
    font-weight: bold;
  }

  @media screen and (min-width: 440px){
    .navbar .container .imageLogo{
      padding: 0em 0 0 1em;
     
  }
    .navbar .container .navText {
        font-size: 20px !important;
    }
    .bottom-bar a{
        font-size: 15px !important;
    }


}


@media screen and (max-width: 500px) {
    .contactSection .contactFields input {
         background: #006777;
    color: white;
    padding: 1em;
    border: 1px solid white;
    border-radius: 1em;
    width: 80%;
  }
    
    .contactSection .contactFields textarea {
    background: #006777;
    color: white;
    padding: 1em;
    border: 1px solid white;
    border-radius: 1em;
    width: 80%;
  }

    
    .contactSection .contactFields .button #abschicken {
        width: 65%;
    }

        
        
}