:root{
  --primary-color:#85b0f5;
  --hover-color: #FFFFFF;
  --background-color: #506992;
} 

body{
  margin: 0;
  background-color: white;
  font-family: 'Besley';
}


/* BANNER */
header a{
  text-decoration: none;
  cursor: pointer;
}


.hamburgerMenu{
  display: none;
}

#banner{
  width: 100%;
  padding:0;
  display: flex;
  align-items: center;
  background-color: rgb(255, 255, 255);
  position: sticky;
  top: 0;
  justify-content: center;
  z-index: 2;
}

#bannerLinks{
  font-size: 1.75rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 90px;
}

.links{
  color: #ffffff;
  display: flex;
  align-items: center;
  margin-right: 1vw;
  background-color: var(--primary-color);
  padding: 10px 15px;
  border: 1px solid black;
  box-shadow: 3px 3px 5px rgb(46, 46, 46);
  border-radius: 5px; 
  text-shadow: 8px 4px 10px black;
  height: 50%;
}

@media (min-width:1366px){
.links:hover{
  background-color: var(--hover-color);
  color: #000000;
  transition: 0.35s;
  box-shadow: 1px 1px 10px rgb(46, 46, 46);
  text-shadow: none;
}}

.links img{
  height: 2.4rem;
  margin-right: 10px;
}

@media (max-width:1365px){
  .hamburgerMenu{
    display: block;
    width: 40%;
    margin-left: 10%;
    font-size: 3rem;
  }

  #banner{
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #ffffff00;
    position: fixed;
  }

  #bannerLinks{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #5b89d4;
    height: 300px;
    transition: 0.2s ease-in;
  }

  .links{
    font-size: 1.5rem;
    border: none;
    box-shadow: none;
    background-color: #ffffff00;
    height: 35px;
    padding: 5px 10px;
  }
  
  .links img{
    height: 1.8rem;
    margin-right: 10px;
  }

  .mobileVisibilityHidden {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0);
  }
}

@media (max-width:767px){
  .hamburgerMenu{
    font-size: 2.5rem;
  }

  #bannerLinks{
    height: 240px;
  }

  .links{
    font-size: 0.8rem;
    height: 30px;
  }

  .links img{
    height: 1.3rem;
  }
}


/* KONTAKT */

#contact{
  margin-top: 250px;
  width: 100%;
  background-color: var(--background-color);
  height: 450px;
  box-shadow: -5px -5px 25px var(--background-color);
  display: flex;
  justify-content: center;
}

#contactText{
  text-align: center;
  font-size: 2rem;
  width: 30%;
  margin-top: 30px;
  color: var(--hover-color);
  text-shadow: 2px 2px 5px black, 0px 15px 15px gray;
}

#contactText a{
  text-decoration: none;
  color: var(--hover-color);
}

#contactText img{
  align-self: center;
  width: 5rem;
}


@media (max-width:1365px){
  #contact{
    margin-top: 40px;
    height: 430px;
  }
  #contactText{
    font-size: 2rem;
    width: 100%;
  }
  #contactText img{
    align-self: center;
    width: 3rem;
  }
}
@media (max-width:767px){
  #contact{
    height: 220px;
  }
  #contactText{
    font-size: 0.9rem;
  }
}