#karuzela .carousel-caption {
  width: 75%;
  animation-name: grawit;
  animation-duration: 1s;
  animation-direction: reverse;
}
#karuzela .carousel-item img{
  animation-name: pom;
  animation-duration: 3s;
  animation-timing-function: ease-out;
}
#karuzela .carousel-caption p {
  font-size:120%;
  background-color: #E38804;
  text-align: left;
  padding: 20px;
  padding-bottom: 20px;
  margin-bottom: 0px;
  border-radius: 8px;
  line-height: 25px;
    padding-left:30px;
}

#karuzela .carousel-caption p span{
    font-style:italic;
}

#karuzela .carousel-caption p::before {
    content:"“";
    margin-left:-20px;
    font-size:200%;
    font-family: "Times New Roman", Times, serif;
}
#karuzela .carousel-caption::after {
  content: url(/images/FirstPage/ogon.svg);
  display: block;
  width: 26px;
  height: 26px;
  margin-left: 25px;
  background: transparent url('/images/FirstPage/ogon.svg') no-repeat;
}
.nav-link{
    font-size:150%;
    color:#23378b;
}
a{
    text-decoration: none;
}
a:hover{
    text-decoration:underline;
}
@keyframes grawit{
  from {transform: scale(1);}
  to {transform: scale(0);}
}
@keyframes pom{
  from {transform: scale(2);}
  to {transform: scale(1);}
}