#index-page.container-fluid{
    position: fixed;
    margin:0;
    top: 0;
    width: 100%;
    height: 100%;
}

.index-page-video{
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background: transparent;
}
.btn-dobrodosli {
    display: block;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 8px;
    width: 100%;
    margin-top: 10%;
    margin-left: 44%;
    max-width: 200px;
    background: #fff; /* fallback color for old browsers */
    background: rgba(245, 211, 18, 0.822);
    border-radius: 8px;
    color: rgb(0, 0, 0);
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease-out;
    opacity: 0;
    animation: fadeIn 146s;
    -moz-animation: fadeIn 146s;
    -o-animation: fadeIn 146s;
    -webkit-animation: fadeIn 146s;
    animation-delay: 9s;
    -moz-animation-delay: 9s;
    -o-animation-delay: 9s;
    -webkit-animation-delay: 9s;
  }
.text .btn-dobrodosli:hover,
.text .btn-dobrodosli:focus,
.text .btn-dobrodosli:active {
    background: rgb(235, 22, 7);
    color: white;
    transition: all 0.5s ease-in;
}
.text .btn-dobrodosli:focus {
    outline: none;
}

img {
    width: 100%;
    height: 100%;
}
.text h1{
    position: relative;
    opacity: 0;
    color: white;
    z-index: 100;
    font-size: 40px;
    font: weight 400;
    padding-top: -20px;
    margin-top: 16%;
    margin-left: 35%;
    animation: fadeIn 146s;
    -moz-animation: fadeIn 146s;
    -o-animation: fadeIn 146s;
    -webkit-animation: fadeIn 146s;
    animation-delay: 9s;
    -moz-animation-delay: 9s;
    -o-animation-delay: 9s;
    -webkit-animation-delay: 9s;
    text-shadow: 0 4px 8px rgba(243, 219, 6, 0.918);
    
}
@keyframes fadeIn{
    0% {
        opacity: 0;
    }
    5%{
        opacity: 0,9;
    }
    15%{
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 1016px) and (min-width: 960px) {
    .btn-dobrodosli {
        margin-top: 10%;
        margin-left: 42%;
    }
    .text h1 {
        margin-top: 20%;
        margin-left: 30%;
    }
}

@media screen and (max-width: 519px) and (min-width: 350px) {
    .btn-dobrodosli {
        margin-top: 25%;
        margin-left: 25%;
        max-width: 200px;

    }
    .text h1 {
        font-size: 1.5em;
        margin-top: 60%;
        margin-left: 12%;
    }
}