body{
  background-color:  #a4b494;

  font-family: italic cursive;
  justify-content: center;
}

a{
  text-decoration: none;
}

li{
  list-style: none;
}

.navigation{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  z-index: 3;
}

.navTitle{
  display: none;
}

.arrow{
display: inline;
color: white;
}

.basicNav{
  border: 1px solid white;
  border-radius: 6px;
  margin-left: 20px; margin-right: 20px;
}

.navigation-links a{
  color : white;
}

.logo{
  max-width: 100%;
  height: auto;
  margin-right: auto;
  padding:10px;
}

.menu{
  display: flex;
  gap: 1em;
  font-size: large;
  padding: 20px;
  position: absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
}

.menu li{
  padding: 5px 14px;
}

.menu li:hover{
  font-weight: bold;
  transition: 0.3s ease;
}

.slike{
  position: relative;
}


.dropdown{
  padding: 1em 0;
  position: absolute;
  display: none;
  top: 20px;
  z-index: 1;
  background-color: #a4b494;
}



.dropdownNav{
  border-bottom: 1px solid white;
}

.dropdown li+li{
margin-top: 0;
}

.dropdown li{
  padding: 2px 5px;
}

.dropdown li:hover{
  font-weight: bold;
}

.slike:hover .dropdown{
  transition-duration: 0.5s;
  display: block;
}

input[type=checkbox] {
  display: none;
} 


.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
}

.astistDescription{
  font-size: 1em;
  border-width: 1px 0 0 0;
  border-color: white;
  border-style: solid;
  text-align: justify;
  padding: 10px;
  position: relative; top: -30px;

}


.container{
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
  margin: auto;
}

.container:hover .art{
  filter: grayscale(70%);
}

.column {
  flex: 25%;
  max-width: 25%;
}

figure{
  width: 95%;
  border: 2px solid white;
  margin: auto;
  margin-bottom: 5%;
}

figcaption {
  background-color: white;
  color: black;
  text-align: center;
}

.column img {
  width: 100%;
}


.image_container:hover{
  transform: scale(1.2);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.image_container:hover .art{
  filter: grayscale(0%);
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  column-gap: 5px;
  height: 5%;
  margin: 0;
}

.contact{
  font-style: bold;
}

.mail_link{
  display: flex;
  column-gap: 10px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: rgb(64, 71, 58);
  
}

@media screen and (max-width: 1250px){
  .basicNav{
    height: 20px;
  }

  .basicNav{
    white-space: nowrap;
  }
}

@media screen and (max-width: 1000px){
  .menu{
    right: -20px;
  }
}




@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }


  .navigation{
    top:-15px;
    height: fit-content;
    background-color: #a4b494;
    z-index: 3;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 20px;
}

.logo{
  padding: 0;
  margin: 0;
  width: 20%;
  height: auto;
}

.menu{
    display: none;
    position: absolute;
    top:50%; left:50%;
    transform: translate(-50%,50%); 
    text-align: center; 
    padding: 16px 0;
    width: 100%;
    background-color: #a4b494;
    align-items: center;
    border: 1px solid white;
}

.basicNav{
    border: 0px;
    width: 100%;
}

.menu li{
  margin: auto;
}

input[type=checkbox]:checked ~ .navigation-links .menu{
    display: block;
}

.navTitle{
    display: inline;
    color: white;
    font-size: 2em;
    margin: 0;
    flex-grow: 1;
    text-align: center;
    margin-left: 10px; margin-right: 10px;
}

.hamburger{
    display: block;
    color: white;
}  

.dropdown{
width: fit-content;
background-color: #a4b494;
border-radius: 2px;
position: absolute; left: 50%;
} 

.dropdown li{
border-bottom: 0px;
padding: 4px;
}

  .container{
    margin-top: 10%
  }
}




@media screen and (max-width: 450px){

  .hamburger{
    margin-right: 15px;
  }

  .navTitle{
    font-size: 1.5em;
    text-align: center;
  }

}