html, body {
    margin: 0;
    padding: 0;
}

.element {
    position: absolute;
    height: 25px;
    width: 25px;
    z-index: 2;
  }

  #fullscreen-iframe1{
    width: 100%;
    height: 100%;
    }

.animation-container {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 30%;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: sans-serif;
    font-size: 15px;
}

.urednik{
  margin-right: 30px;
}


.text_urednika{
    width: 500px;
    text-align: left;
    font-size: 30px;
}

.spokojenost_obyvatel{
    padding: 0px;
    margin-top: -35px;
}

.content-wrap{
    display: flex;
    justify-content: center;
    align-self: flex-start;
}

.my_video {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
  top: 0;
  right: 0;
}

.popis_problemu{
  position: fixed;
  z-index: 1;
  top: 0;
  color: white;
  size: 60px;
}

.content-wrap2{
    display: flex;
    flex-direction: column;
    float: left;
    justify-content: center;
    padding: 0px;
}

.stiznost{
    margin-bottom: 50px;
    overflow: auto;
}

.main-wrap{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 80%;;
}

svg {
    height: 42vh;
}

.sad {
    width: 10em;
    height: 10em;
    margin-left: auto;
    margin-right: auto;
  }

  .sad {
    width: 10em;
    height: 10em;
    .face {
      animation: leftToRight 0.4s linear infinite alternate-reverse;
    }
    .left-eye, .right-eye {
      opacity: 1;
      transform-origin: 0 1px;
      animation:
        blink 3s linear infinite,
        blinkSqueeze 3s linear infinite;
    }
    .mouth {
      padding-top: 20px;
    }
  }

  @keyframes rotateLeftToRight {
    0% { transform: rotate(15deg); }
    50% { transform: rotate(-15deg); }
    100% { transform: rotate(15deg); }
  }
  @keyframes fineUpAndDown {
    0% { transform: translate(0, 0); }
    25% { transform: translate(0, -1px); }
    50% { transform: translate(0, 0); }
    75% { transform: translate(0, -1px); }
    100% { transform: translate(0, 0); }
  }
  @keyframes upAndDown {
    0% { transform: translate(0, -1px); }
    50% { transform: translate(0, 2px); }
    100% { transform: translate(0, -1px); }
  }
  @keyframes leftToRight {
    0% { transform: translate(-1px, 4px); }
    100% { transform: translate(1px, 4px); }
  }
  @keyframes leftToRightWide {
    0% { transform: translate(-5px, 1px); }
    100% { transform: translate(2px, 1px); }
  }
  @keyframes scaleX {
    0% { transform: translate(0, 0) scale(1, 1); }
    100% { transform: translate(-9px, 0) scale(2, 1); }
  }
  @keyframes scaleUpAndDown {
    0% { transform: scale(1, 1); }
    100% { transform: scale(1, 1.2); }
  }
  @keyframes blink {
    0% { opacity: 1; }
    45% { opacity: 1; }
    50% { opacity: 0; }
    55% { opacity: 1; }
    100% { opacity: 1; }
  }
  @keyframes blinkSqueeze {
    0% { transform: scale(1, 1); }
    45% { transform: scale(1, 1); }
    50% { transform: scale(1, 0); }
    55% { transform: scale(1, 1); }
    100% { transform: scale(1, 1); }
  }
  @keyframes blinkSqueezeTwice {
    0% { transform: scale(1, 1); }
    45% { transform: scale(1, 1); }
    50% { transform: scale(1, 0); }
    55% { transform: scale(1, 1); }
    60% { transform: scale(1, 0); }
    65% { transform: scale(1, 1); }
    100% { transform: scale(1, 1); }
  }

.page {
    height: 400vh;
}

.content {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
}

.content-section {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    background-color: #f3f3f3;
}

.story-telling-img{
  width: 100%;
  height: auto;
}


#screen_video{
    width: auto;
    height: auto;

}



.content-section > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin-top: -10vh;
    text-align: center;
}

#konfeti{
    position: absolute;
    top: 0px;
    left: 7650px;
    width: 100%;
    height: 100%;
    filter: grayscale(0%);
}

h1 {
    padding: 0;
    margin: .5em 0;
    font-size: 3em;
}

p {
    padding: 0;
    margin: .25em 0;
    font-size: 25px;
}

a {
    color: black;
}

.arrow-animated {
    font-size: 35px;
    animation: arrow-float 1s infinite;
}

@keyframes arrow-float {
    0% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
    60% {
        transform: translateY(50%);
        animation-timing-function: ease-in-out;
    }
    100% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
}