/* 
** The Header Media Queries **
** Tweak as per your needs **
*/
a.home{
  padding-left:10px;
}
.brand {
  font-weight: bold;
  font-size: 30px; }

.site-header {
  width: auto;
  position: relative;
  background-image: url("holz.jpeg");
  border-bottom: 4px solid black;
 }

.site-header__wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem; }
  @media (min-width: 600px) {
    .site-header__wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 0;
      padding-bottom: 0; } }
@media (min-width: 600px) {
  .nav__wrapper {
    display: flex; } }

@media (max-width: 599px) {
  .nav__wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: -1;
    background-color: #d9f0f7;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out; }
    .nav__wrapper.active {
      visibility: visible;
      opacity: 1;
      transform: translateY(0); } }

.nav__item a {
  font-size:2vw;
  display: block;
  padding: 2.5rem 2rem; 
margin: auto;}

a:link {
  color: white;
}
a:visited {
  color: white;
  text-shadow: 4px 4px 6px #000000;
}
a:hover {
  color: black;
}
a:active {
  color: gray
;
}
a{
	text-decoration: none;
}