/* Custom styles */

@import url('https://fonts.googleapis.com/css2?family=Cookie&display=swap');

.pozemkomat {
  font-family: 'Cookie', cursive;
  font-size: 5rem !important;
}

.pozemkomat-logo {
  font-family: 'Cookie', cursive;
  font-size: 2.8rem;
}

.custom-hidden {
  display: none;
}

.custom-spacing-mx8 {
  margin-left: 8px;
  margin-right: 8px;
}

.custom-header-logo-margin {
  margin-top: 5px !important;
  margin-bottom: -14px !important;
}

.custom-header-menu-margin {
  margin-top: -30px !important;
  margin-bottom: 10px !important;
}

.custom-link {
  text-decoration: none;
}



/* CSS Animations */

.custom-animate-fading {
  animation: fading 2.5s;
}

@keyframes fading {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.custom-animate-left {
  position: relative;
  animation: animateleft 2s;
}

@keyframes animateleft {
  from {
    left: -25px;
    opacity: 0
  }

  to {
    left: 0;
    opacity: 1
  }
}