:root {
    --main-bg-color: #0e1111;
    --secondary-bg-color: #232b2b;
    --primary-txt-color: #6f865f;
    --secondary-txt-color: #14A098;
    --trinary-color: #CCC;
    --main-bg-color2: rgb(255, 255, 255);
  }

body{
    color: var(--trinary-color);
    font-family: Arvo,sans-serif;
    width: 100%;
    margin: auto;
    margin-top: 0;
    background-color: var(--main-bg-color);
    min-height: 100vh;
    /*background-image: url("../pics/background.jpg");
    */
    font-size: 16pt;
    display: flex;
    flex-direction: column;
  }
main{
  width: 90%;
  margin: auto;
}

footer {
  padding-right: auto;
  display: flex;
  gap: 30px;
}
footer p{
  margin-right:"5px";
  height: 20px;
}
#backgroundDiv{
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: -1;
  filter: blur(5px); 
}

/* kontakt */
.kontakt{
  padding: 1%;
  background-color: var(--secondary-bg-color	);
  border-radius: 5px;
  margin-bottom: 40px;
  padding-left: 20px;
}

#secondary{
  color: var(--primary-txt-color);
}

.headerImage{
  /*background-image: linear-gradient(white, var(--main-bg-color));*/
  background-image: linear-gradient(rgba(0, 0, 0, 0), var(--main-bg-color)) , 
  url('../pics/Logo1.jpeg');
  background-size: 120%;
  background-repeat: stretch;
  background-position: center;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  backdrop-filter: blur(2px);
  user-select: none;
}
.headerImage img{
  display: block;
  height: 100%;
  width: auto;
  max-height: 90vh;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}
.blur{
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  height: 100%;
  width: 100%;
}

/* Scrollbar */
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(71, 71, 71, 0.233); 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(66, 66, 66, 0.733);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #5a5a5a; 
}

@media (max-aspect-ratio: 10/16){
  .headerImage img{
    max-width: 100vw;
    margin-left: -6%;  
  }
}