* {
  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, 249, 249);
  text-align: center;

}

.zaglavie1 {
  text-align: center;
  color: rgb(0, 0, 0);
}

.tekstovopole {
  margin-bottom: 10%;
}

.deynosti {
  margin-bottom: 20%;
}

.zaglavie2 {
  font-size: xx-large;
}

.paragraf {
  font-size: x-large
}

/* cards */
.blog-card {
  width: 99.8%;
  height: 5%;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(189, 158, 111, 0.44);
  overflow: hidden;
}

.blog-card__image {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.blog-card__content {
  padding: 16px;
}

.blog-card__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}

.blog-card__description {
  font-size: 18px;
  line-height: 1.5;
  color: #9a8260;
}

.blog-card:hover {
  background-color: #c2a08542;
}

.blog-card__read-more {
  display: block;
  width: 100%;
  height: 40px;
  background-color: #c29e85;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  margin-top: 16px;
}

.blog-card__category {
  display: block;
  width: 80px;
  height: 24px;
  background-color: #89683b;
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 24px;
  border-radius: 4px;
  margin-top: 16px;
}

.blog-card__date {
  display: block;
  width: 100%;
  height: 25px;
  background-color: #c9ac81;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 24px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.blog-card__author {
  display: flex;
  align-items: center;
  margin-top: 32px;
}

.blog-card__author-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
}

.blog-card__author-info {
  flex: 1;
  display: inline-block;
}

.blog-card__author-name {
  font-size: 18px;
  margin-bottom: 8px;
}

.blog-card__author-bio {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

/* 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;
  }
}