body {
    margin: 0px;
    cursor: url(cursor.cur), auto;
    background-color: rgb(22, 31, 50);
    color: #fff;
}

header {
    display: flex;
    flex-direction: column;
    padding: 100px 0px 300px 50px;
    background-image: url(IMG/Malphite_1.jpg);
    background-position: center;
    background-size: cover;
    border-bottom: 2px #000 solid;
}

h1 , h2 , h3 , p , h4{
    font-family: "Beaufort for LOL", sans-serif;
    font-style: italic;
}

header h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 40px;
    color: #38ff21;
    -webkit-animation: glow 3s ease-in-out infinite alternate;
    -moz-animation: glow 3s ease-in-out infinite alternate;
    animation: glow 3s ease-in-out infinite alternate;

}

header h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: #38ff21;
    -webkit-animation: glow 3s ease-in-out infinite alternate;
    -moz-animation: glow 3s ease-in-out infinite alternate;
    animation: glow 3s ease-in-out infinite alternate;
}

header p {
    font-size: 20px;
    font-weight: 600;
    text-align: justify;
    color: #38ff21;
}

button {
    font-family: 'Marcellus SC', serif;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 10px 20px; 
    background: #1e2328;
    color: #cdbe91;
    box-shadow: inset 0 0 2px #000000;
    border-image: linear-gradient(to bottom, #c8aa6d, #7a5c29);
    border-image-slice: 1;
    border-width: 2px;
}
  
button:hover {
    text-shadow: 0 0 5px #ffffff80;
    box-shadow: 0 0 8px 0 #ffffff50;
    background: linear-gradient(to bottom, #1e2328, #433d2b);
    cursor: pointer;
    transition: 0.1s;
}
  
button:active {
    text-shadow: none;
    box-shadow: none;
    color: #cdbe9130;
}

#shutr {
    width: 40%;
    min-width: 280px;
}
  
@keyframes glow {
    from {
      text-shadow: 0 0 10px #000, 0 0 20px #000, 0 0 30px #047b08, 0 0 40px #047b08, 0 0 50px #047b08, 0 0 60px #047b08, 0 0 70px #047b08;
    }
    to {
      text-shadow: 0 0 20px #000, 0 0 30px #1aff00, 0 0 40px #1aff00, 0 0 50px #1aff00, 0 0 60px #1aff00, 0 0 70px #1aff00, 0 0 80px #1aff00;
    }
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: #00000088;
    padding: 20px 0px;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 10;
}

nav a {
    text-decoration: none;
    font-size: 26px;
    font-weight: 600;
    font-family: "Beaufort for LOL", sans-serif;
    font-style: italic;
    color: #fff;

 }

nav a:hover {
    scale: 1.25;
    transition: 0.5s ease-in-out;
    cursor: url(cursor-hover.cur) , auto;
}

nav a img {
    width: 40px;
    height: 40px;
}

section {
    padding: 20px 14%;
    color: rgb(200, 170, 110);
}

section h1 {
    font-size: 48px;
    text-align: center;
}

section h3 {
    font-size: 28px;
}

section strong{
    font-size: 24px;
    line-height: 0px;
} 

section h4 {
    display: none;
}

section p {
    font-size: 20px;
}

#Abyblitky , #Lore , #Skini {
    border: 1px #000 solid;
}

#Lore {
    padding-bottom: 40px;
}

.sigma {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 30px;
    padding: 10px;
}

.sigma img {
    display: flex;
    align-self: center;
    width: 150px;
    height: 150px;
    border-radius: 15px;
}

.beta {
    display: flex;
    flex-direction: column;
    width: 60%;
    line-height: 20px;
}

/* SKINY */

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    overflow: hidden;
  }
  
  .slide {
    display: none;
    width: 100%;
  }
  
  .slide img {
    width: 100%;
    border-radius: 10px;  
  }
  
  .caption {
    color: #f2f2f2;
    font-size: 18px;
    padding: 8px 12px;
    position: absolute;
    bottom: 4px;
    text-align: center;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 10px 10px;
  }
  
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .dot-container {
    text-align: center;
    padding: 20px 10%;
    background-color: #222;
  }
  
  .dot {
    cursor: url(cursor.cur);
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #333;
  }
  
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }

/* KONEC SKINY */

footer {
    background-color: #292929;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 10px 14%;
    text-align: center;
}

footer a {
    font-family: "Beaufort for LOL", sans-serif;
    color: #fff;
    font-size: 20px;
    margin: 20px;
    line-height: 25px;
    text-decoration: none;
}

p a {
    font-size: 16px;
    margin: 10px;
}

footer a:hover {
    color: #0000ff;
    cursor: url(cursor-hover.cur), auto;
    transition: 0.5s;
}

#Kopretina {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#Kopretina h3 {
    color: #fff;
}

@media (max-width:1000px) {
    header {
        background-image: url(IMG/header_phone.png);
        padding: 60px 0px 50px 0px;
        border: none;
        align-items: center;
    }

    header h1 {
        text-align: center;
        color: rgb(22, 31, 50);
    }

    header h2 {
        text-align: center;
        color: rgb(22, 31, 50);
    }

    header p {
        text-align: center;
        color: rgb(22, 31, 50);
        font-size: 20px;
        -webkit-animation: glow 3s ease-in-out infinite alternate;
        -moz-animation: glow 3s ease-in-out infinite alternate;
        animation: glow 3s ease-in-out infinite alternate;
    } 

    section p {
        text-align: center;
    }

    

    @keyframes glow {
        from {
          text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #666, 0 0 40px #666, 0 0 50px #666, 0 0 60px #666, 0 0 70px #666;
        }
        to {
          text-shadow: 0 0 20px #fff, 0 0 30px #999, 0 0 40px #999, 0 0 50px #999, 0 0 60px #999, 0 0 70px #999, 0 0 80px #999;
        }
    }

    #shutr {
        width: 70%;
    }

    #šlechtička {
        display: flex;
        justify-content: center;
    }

    nav {
        position: relative;
        flex-direction: column;
    }

    nav a {
        margin: 10px 0px;
    }

    #alhamdulillah {
        display: flex;
        flex-direction: column-reverse;
    }

    #Abyblitky h1 {
        text-align: center;
    }

    #Kopretina {
        flex-direction: column;
    }

    .paratko {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 5px;
    }

    footer {
        flex-direction: column-reverse;
    }

    #otroctví {
        display: none;
    }

    footer a {
        margin: 10px;
    }

    .sigma {
        flex-direction: column;
        align-items: center;
    }

    .beta {
        width: 100%;
    }

    .beta h3 {
        text-align: center;
        font-size: 36px;
        margin: 25px 0px 5px 0px;
    }

    .beta h4 {
        display: block;
        font-size: 28px;
        text-align: center;
        margin: 20px 0px 10px 0px;
    }

    .beta strong {
        display: none;
    }

    .beta p {
        display: block;
        margin: 10px 0px 20px 0px;
    }   
}