* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cormorant Garamond", serif;
}

body {
  min-height: 100vh;
  width: 100%;

}

.debelo {
  font-weight: 800;
}

.main {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.381) 0%, rgba(137, 104, 59, 0.621) 25%, rgba(246, 210, 155, 0.49) 100%), url("/img/full-img/DSC_0335.JPG");
  height: 450px;
  background-size: cover;
  background-repeat: no-repeat;
}

.zaglavie {
  padding-top: 10.5%;
  color: rgb(255, 255, 255);
  font-size: 60px;
  text-align: center;
}

.zaglavie1 {
  text-align: center;
  color: rgb(0, 0, 0);
}

.galeriq {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 1% 1%;
  white-space: 1%;
}


.link-thumbnail {
  width: 12%;
  display: block;
  border: 10px solid #fff;
  margin-bottom: 1rem;
  white-space: 1% wrap;
}

.link-thumbnail img {
  display: block;
  width: 110%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.dimbox-caption {
  font-weight: 700;
  font-size: 80px;
}

.author {
  margin-bottom: 10%;
  text-align: end;
  color: #000000;
  font-size: 25px;
  font-weight: 580;
  margin-right: 0.5%;
  margin-top: -1.5%;
}

/* to-top */
#myBtn {
  z-index: 99;
  background-color: #89683b;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  cursor: pointer;
  border-radius: 15px;
}

.abc {
  text-align: center;
}

.abc a:hover {
  text-decoration: none;
}

/* footer */
.footer {
  position: relative;
  width: 100%;
  background: #c29e85;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}

.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: #fff9f9;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.85;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("/img/logo/wave.png");
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animate 4s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 3s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }

  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }

  100% {
    background-positon-x: 0px;
  }
}