/*OBECNE*/
/* comic-neue-300 - latin */
@font-face {
    font-family: 'Comic Neue';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/comic-neue-v8-latin-300.woff2') format('woff2');
}

/* comic-neue-regular - latin */
@font-face {
    font-family: 'Comic Neue';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/comic-neue-v8-latin-regular.woff2') format('woff2');
}

/* comic-neue-700 - latin */
@font-face {
    font-family: 'Comic Neue';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/comic-neue-v8-latin-700.woff2') format('woff2');
}

/* dotgothic16-regular - latin_latin-ext */
@font-face {
    
    font-family: 'DotGothic16';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/dotgothic16-v17-latin_latin-ext-regular.woff2') format('woff2');
}

body {

    color: rgb(255, 0, 72);
    background: black;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DotGothic16';
    color: #181425;
}

.container {
    margin: auto;
}

a {
    color: rgb(58, 162, 214);
    text-decoration: none;
    font-family: 'Comic Neue';
}

a,
.nadpis,
img,
.btn {

    transition: 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'DotGothic16';
    font-weight: bold;
    color: #210a32;
    border-bottom: solid 1px #210a32;
    width: 50%;
    padding: 30px 0;
    margin: 0 auto 30px;
    text-shadow: 2px 2px red;
}

/*HEADER*/

header {
    background: url(/img/884.GIF) repeat;
}

.headerzacatek .container {
    display: flex;
    justify-content: space-between;
    padding: 50px 75px 150px;
    color: rgb(58, 162, 214);
}

.headerzacatek ul {
    display: flex;
    list-style: none;
    gap: 20px;
    text-transform: uppercase;
    font-weight: 700;
    padding-top: 25px;
}

.headerzacatek ul a {
    color: red;
}

.headerzacatek ul a:hover {
    color: blue;
    text-decoration: underline;
}

.nadpis {
    font-size: 50px;
    font-family: 'DotGothic16';
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px red;
    animation-name: spincolor;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.nadpis:hover {
    color: #fff;
}

@keyframes spincolor {
    0% {
        color: #fff;
    }

    25% {
        color: #a300ff;
    }

    50% {
        color: #bf0;
    }

    75% {
        color: gold;
    }

    100% {
        color: #0070ff;
    }
}

.headerzacatek i p {
    padding-top: 25px;
    font-weight: 700;
    font-family: 'Comic Neue';
    color: blue;
}

/*SECTION*/

.obsahbox {
    background: url(/img/1028.GIF) repeat;
    width: 50%;
    margin: auto;
    position: relative;
    bottom: 45px;
    border: 10px dashed black;
    box-shadow: 0 0 30px 3px black, 0 0 15px 3px black;
    margin-bottom: 80px;
    
}

.obsahbox .container {
    padding: 45px 80px;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}


.obsahbox h1 {
    font-size: 35px;
}

.obsahbox p {
    background: linear-gradient(rgb(172, 207, 255), rgb(196, 207, 255));
    font-size: 15px;
    border: 3px solid rgba(0, 2, 18, 0.886);
    border-radius: 50px;
    padding: 25px;
    color: #181425;
    font-family: 'DotGothic16';
}
.obsahbox img {
    cursor: pointer;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 30px 3px #32b7ffa7, 0 0 15px 3px #ffffff8e;
    }
    30% {
        box-shadow: 0 0 35px 5px #32b7ff80, 0 0 25px 5px #ffffff5f;
    }

    50% {
        box-shadow: 0 0 25px 3px #32b7ffa7, 0 0 10px 3px #ffffff8e;
    }

    80% {
        box-shadow: 0 0 15px 3px #32b7ffa7, 0 0 5px 3px #ffffff8e;
    }

    100% {
        box-shadow: 0 0 30px 3px #32b7ffa7, 0 0 15px 3px #ffffff8e;
    }
}


.btnflex {
    display: flex;
    justify-content: space-around;
}

.btn {
    border-radius: 5px;
    background: rgb(194, 67, 101);
    color: #fff;
    padding: 10px 15px;
    display: inline-block;
    font-size: 16px;
    font-family: 'Comic Neue';
    border: 2px solid rgb(240, 139, 166);
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0) scaleX(1.1);
    }
    40% {
      transform: translateY(-10px) scaleY(1.1);
    }
    60% {
      transform: translateY(-5px) scaleY(1);
    }
  }

.btn:hover {
    background: rgb(240, 139, 166);
    border: 2px solid rgb(194, 67, 101);
    animation: bounce 0.5s ease;
}

.gifflex {
    display: flex;
    justify-content: center;
}

.gifflex img {
    cursor: pointer;
    width: 200px;
    height: auto;
}

.gifflex img:hover {
    scale: 1.05;
}

.gifflex .imgtrans {
    position: relative;
    width: 150px;
    height: auto;
    max-width: 100%;
}

.imgtrans .hoverjon {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    object-fit: contain;
    opacity: 0;
}

.imgtrans:hover img.hoverjon {
    opacity: 1;
    transition: none;
}

.imgtrans:hover johnt {
    opacity: 0;
    transition: none;
}

  .dialogue img {
  cursor: default;
  border-style: ridge;
  border-width: 20px;
  border-radius: 10px;
  border-color: rgb(194, 67, 101);
  justify-content: center;
  width: 60%;
  height: auto;
  
  }
  



/*FOOTER*/

.theend {
    background: rgb(64, 68, 102);
    padding: 50px 0;
}

.theend .container {
    display: flex;
    justify-content: space-around;
    margin: 0 150px;
    
}
.theend .cult, .theend .emailcol {
    background: linear-gradient(rgb(172, 207, 255), rgb(196, 207, 255));
    border: 3px solid rgba(0, 2, 18, 0.886);
    border-radius: 50px;
    padding: 25px;
}
.cultpng {
    display: flex;
}
.cultpng img {
    width: 100px;
    height: auto;
    padding-top: 15px;
}

.theend .emailcol {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.theend span {
    font-size: 25px;
    font-weight: bold;
}

.explode {
    background: url(../img/pup.gif);
    padding: 50px;
}
.stealin .stealflex {
    display: flex;

}

.stealin input[type="email"] {
    padding: 10px;
    font-size: 20px;
    border: none;
    border-radius: 25px;
}
.stealin .btn {
    padding: 15px;
    border-radius: 25px;
    margin-left: -40px;
}
.stealin .btn {
    animation: none;
}

.fire-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: url('img/hellfire.gif') center center / cover no-repeat;
  mix-blend-mode: screen;
  opacity: 0.4;
  z-index: 9999;
  animation: flicker 0.15s infinite;
}