h1 {
    color: red;
    }

#nadpis{
    color: orangered;
    
}

#test {
    margin-top: 25px;
    font-size: 21px;
    text-align: center;

    -webkit-animation: fadein 4s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 4s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100px);
    }
}

.main{
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
}

.my-title{
    transition: 1s linear;
    margin-top: -5px;
    font-size: 68px;
    color: #F1F7ED;
    text-align: center;
    text-shadow:1px 1px 10px #a2a2a27c, 1px 1px 10px #8080806f;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.my-font{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #F6AE2D;
}

h5 {
    font-size: 30px;
    color: rgb(0, 0, 0);
}

.my-picture1{
    transition-delay: 2s;
    margin-top: -10px;
    width: 100%;
    height: auto;
    transition: 5s linear;
    filter: hue-rotate(0deg) brightness(60%);
}

.my-picture1:hover{
    transition-delay: 1s;
    margin-top: -10px;
    width: 100%;
    height: auto;
    transition: 8s linear;
    filter: hue-rotate(360deg) brightness(100%);
}


.my-picture{
    transition: 1s linear;
    width: 100%;
    height: auto;
    filter:brightness(50%)
}

.my-picture:hover{
    width: 100%;
    height: auto;
    transition: 2s linear;
    filter:brightness(100%)
}

h1 {
    color: red;
    margin-left: auto;
    margin-right: auto;
    }

#buttons{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    justify-content: space-around;
    display: flex;
    flex-flow: row wrap;
    padding-bottom: 20px;
    text-align: center;
    font-size: 25px;
    color: #F1F7ED;
    font-style: normal;
    text-decoration: none;
    text-shadow:1px 1px 10px #a2a2a27c, 1px 1px 10px #8080806f;
}

.hvr-shrink {
    justify-content: space-around;
    display: flex;
    flex-flow: row wrap;
    padding-bottom: 20px;
    text-align: center;
    font-size: 25px;
    color: #F1F7ED;
    font-style: normal;
    text-decoration: none;
    text-shadow:1px 1px 10px #a2a2a27c, 1px 1px 10px #8080806f;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
  }
  .hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

body {
    background: hsla(5, 96%, 19%, 1);

background: linear-gradient(90deg, hsla(5, 96%, 19%, 1) 0%, hsla(30, 13%, 6%, 1) 100%);

background: -moz-linear-gradient(90deg, hsla(5, 96%, 19%, 1) 0%, hsla(30, 13%, 6%, 1) 100%);

background: -webkit-linear-gradient(90deg, hsla(5, 96%, 19%, 1) 0%, hsla(30, 13%, 6%, 1) 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#5F0A02", endColorstr="#110F0D", GradientType=1 );
}

.odkaz :visited {
    color: #F1F7ED;
    font-style: normal;
    text-decoration: none;
    text-shadow:1px 1px 10px #a2a2a27c, 1px 1px 10px #8080806f;
}

a{
    text-decoration: none !important;
    color: #a9aca8c3;
    transition: 0.5s;
}

a:link { 
    text-decoration: none; 
  } 
  a:visited { 
    text-decoration: none; 
  } 
  a:hover { 
    text-decoration: none; 
    color: #eeeeee;
    transition: 0.5s;
  } 
  a:active { 
    text-decoration: none; 
  }




