* {
    margin:0;
    padding:0;
}

body {
    background-color: #111111;
    width: 100%;
    overflow-x: hidden;
}

.body {
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: black;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #4287f5;
    height: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #4287f5;
    height: 10px;
  }

@import url('https://fonts.googleapis.com/css2?family=Kanit&family=Montserrat:wght@500&family=Raleway:wght@600&family=Secular+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Palanquin+Dark&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200&display=swap');

/* 

    NAVIGATION BAR

*/
nav {
    margin-top:25px;
    display: flex;
    flex-direction: row;
    margin-left: 10%;
    height: 100px;
    position: absolute;
    top:0;
    z-index: 2;
}

.nav-logo {
    height: 120px;
    width: auto;
}

.navigation {
    display:flex;
    flex-direction: row;
    gap:10px;
    position:absolute;
    top:50px; left:100px;
    transform:translateY(-50%);
}

.nav-link {
    list-style: none;
    padding:8px 16px;
    border-radius: 20px;
    transition:all 0.7s ease-in-out;
}

.nav-link:first-child {
    margin-left:100px;
}

.nav-link > a {
    color:white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
}

.nav-dropdown {
    list-style: none;
    transition: all 0s;

    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(255,255,255,.2)!important;
    padding:15px;
    z-index: 1;
    border-radius: 10px;
}

.dropdown-content > a {
    color:white;
    text-decoration: none;
    font-family: "Montserrat",sans-serif;
    font-size:15px;
}

.dropdown-content > a:hover {
    color: #03fc88;
}


  
.nav-dropdown:hover .dropdown-content {
    display: block;
}

.nav-dropdown > a {
    color:white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
}

.active {
    /* padding-bottom: 2px;
    border-bottom: #4287f5 solid 2px; */
    background-color: rgb(255,255,255,.2)!important;
}

.nav-link:hover {
    /* padding-bottom: 2px;
    border-bottom: #4287f5 solid 2px; */
    background-color: rgb(255,255,255,.2);
}

.nav-link:hover > a {
    color:white;
}

.nav-dropdown:hover {
    border-bottom: none!important;
    background:none!important;
    cursor:pointer;
} .nav-dropdown:hover > a {
    color:white!important;
}



@media only screen and (max-width: 600px) {
    nav {
        margin:auto;
        margin-top:25px;
        display: flex;
        flex-direction: column;
        height: auto;
        position: absolute;
        top:0;
        z-index: 2;
    }
    .nav-logo {
        position: absolute;
        left:50vw;
        top:50px;
        transform: translateX(-50%);
    }
    
    .navigation {
        display:flex;
        flex-direction: row;
        top:10px; left:50vw;
        transform: translateX(-50%);
        gap:5px;
    }
    
    .nav-link {
        list-style: none;
        margin-top:8px;
        list-style: none;
        padding:2px 4px;
        border-radius: 20px;
        transition:all 0.7s ease-in-out;
        
    }
    
    .nav-link:first-child {
        margin-left:8px;
    }
    
    .nav-link > a {
        color:white;
        text-decoration: none;
        font-family: 'Kanit', sans-serif;
        font-size: 13px;
        font-weight: bold;
    
        white-space: nowrap;
    }
    .dropdown-content > a {
        font-size:12px;
    }
}

/* HEADER */

header {
    height: 300px;
    width: 100%;
    overflow: hidden;
    background-image: url("/images/bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    filter:blur(3px);
    transform:scale(1.1);

    -webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));


}

.h-particles {
    height: 300px;
    width: 100%;
    overflow: hidden;

    position:absolute;
    top:0;
}

@media only screen and (max-width: 600px) {
.h-particles {
    display:none;
}
}

/* 

    PRAVIDLA

*/

.content {
    transform: translateY(-120px);
}

/* NADPIS */

.nadpis{
    text-align: center;

    padding-bottom: 40px;
    border-bottom: rgb(255,255,255,.15) solid 1px;

}

.nadpis > h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    color:white;
}

.nadpis > p {
    font-family: "Raleway",sans-serif;
    font-size: 20px;
    color: white;
    max-width: 30%;
    
    margin:auto;
}

@media only screen and (max-width:1280px) {
    .nadpis > p {
        max-width: 50%;
    }
}

@media only screen and (max-width:600px) {
    .nadpis{
        margin-top:20px;
    }
    
    .nadpis > h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 30px;
        color:white;
    }
    
    .nadpis > p {
        font-family: "Raleway",sans-serif;
        font-size: 18px;
        color: white;
        max-width: 100%;
        margin-inline: 3%;
    }
}


/* POSTS
*/


.novinky {
    display: flex;
    flex-direction: column;
}

.post > a {
    text-decoration: none;
}

.posts-title {
    margin: auto;
    margin-top:30px;
}

.posts-title-underline {
    margin: auto ;
    height: 4px;
    width: 120px;
    background-color: #4287f5;

}

.posts-title > h1 {
    font-family: "Montserrat",sans-serif;
    color:white;
    font-size: 30px;
}

.posts-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.post {
    margin: 40px auto 0 auto;
    width: 50%;
    background-color: rgb(0,0,0,.3);

    display: flex;
    flex-direction: column;

    transition: all 0.4s ease-in-out;

    overflow: hidden;
    box-shadow: rgb(0,0,0) -4px 4px 2px;

    border-radius: 15px;

}

.post:hover {
    background-color: rgb(0,0,0,.1);
}

.post:hover > .post-image {
    background-size: 110%;
}

.post-image {
    width: 100%;
    height: 300px;

    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    transition: all 0.6s ease-in-out;
}


.post-upper {
    display:flex;
    flex-direction: column;
    margin:15px 30px;
}

.post-upper > h1 {
    color:#ffd15c;
    text-shadow: #ffd15c 0px 0px 5px;

    font-family: "Montserrat",sans-serif;
    font-size:30px;

    margin-bottom: 10px;
}

.post-upper > p {
    color:rgb(255,255,255,.75);
    font-family: "Ubuntu",sans-serif;
    font-size: 18px;
}

.post-bottom {
    display:flex;
    flex-direction: row;
    margin: 50px 0 20px 30px;

    align-items: center;
}

.post-bottom > img {
    height: 40px;
    border-radius: 50%;
}

.post-bottom > div {
    display:flex;
    flex-direction: column;
    margin-left: 18px;
}

.post-bottom > div > p {
    color:rgb(255,255,255,.65);
    font-family: "Ubuntu",sans-serif;
    font-size: 17px;
}

.post-bottom > div > h1 {
    color:#fcdf95;
    font-family: "Montserrat",sans-serif;
    font-size:20px;
}

.marked {
    color:#ffd15c;
}

.more-posts {
    margin:40px auto;
}

.more-posts > button {
    background: none;
    border: white solid 1px;
    padding:15px;
    padding-inline: 30px;

    color:white;
    font-family: 'Palanquin Dark', sans-serif;
    font-size: 20px;
    transition: all 0.4s ease-in-out;
    cursor: pointer;

    border-radius: 50px;
}

.more-posts > button:hover {
    background-color: white;
    color:black;
}

@media only screen and (max-width: 1280px) { 

    .posts {
        margin-top: 20px;
        opacity: 1;
    }
    .posts-list {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 600px) {
    
    .posts-list {
        flex-wrap: wrap;
    }

    .post {
        width: 90%;
    }

    .post:hover {
        transform:scale(1.025);
    }
    
    .post-header {
        flex-direction: column;
    }
    
    .post-header-title{
        margin: auto;
    }

    .post-header-author {
        display: none;
    }
    
    .post-text {
        margin:5px 20px 20px 20px;
    }
    
    .post-text > p {
        font-size: 15px;
    }
    
    .more-posts > button {
        padding:10px;
        padding-inline: 20px;
        font-size: 15px;
    }
}

/* DIS PROMO */

.discord-promo {
    margin:60px 0 0 0;
    text-align: center;
}

.discord-promo > button {
    font-family: "Montserrat",sans-serif;
    font-size: 20px;

    padding:15px;
    padding-inline:30px;
    background-color: #738ADB;
    color:white;
    border:none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.35s ease-in-out;
}

.discord-promo > button:hover { 
    background-color: #333e66;
}

/* 

BOTTOM

*/

.bottom {
    border-top: rgb(255,255,255,.15) 1px solid;
    width: 100%;
    padding:50px;
    background-color: rgb(0,0,0,.5);

    display: flex;
    flex-direction: column;
}

.bottom-info {
    width: 60%;
    margin: auto;
    display:flex;
    flex-direction: row;
    justify-content: space-between;

    padding-bottom: 20px;
    border-bottom: rgb(255,255,255,.15) solid 1px;
}



.bottom-info-store {
    display:flex;
    flex-direction: column;
    white-space: nowrap;
}

.bottom-info-store > h1 {
    color:white;
    font-size: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.bottom-info-store > p {
    color:rgb(255,255,255,.8);
    font-family: "Raleway",sans-serif;
    font-size: 18px;
    margin-top:10px; 
}

.bottom-info-store > button {
    width: 70%;
    padding:5px;
    padding-inline: 10px;

    background: none;
    border:#ffd15c solid 1px;
    margin-top:15px;

    color:#ffd15c;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    transition: all 0.5s ease-in-out;
    cursor:pointer;
}

.bottom-info-store > button:hover {
    background-color: #ffd15c;
    color:black;
}



.bottom-info-links {
    display:flex;
    flex-direction: column;
    white-space: nowrap;
}

.bottom-info-links > h1 {
    color:white;
    font-size: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.bottom-info-links > ul {
    display:flex;
    flex-direction: column;
    margin-top:10px;
}

.bottom-info-links > ul > li {
    list-style: none;
}

.bottom-info-links > ul > li > a {
    color:white;
    text-decoration: none;

    font-family: "Raleway",sans-serif;
    font-size:18px;
    color: rgb(255,255,255,.8);
    line-height: 27px;
}

.bottom-info-links > ul > li > a:hover {
    border-bottom: gray solid 1px;
}


.bottom-copyrights {
    margin-top:20px;
    text-align: center;
}

.bottom-copyrights > h1{
    color:rgb(255,255,255,.85);
    font-size: 17px;
    font-family: 'Mukta', sans-serif;
}

.bottom-vysko {
    text-decoration: none;
    color:#ffd15c;
    font-size: 17px;
    font-family: 'Mukta', sans-serif;
    padding-bottom: 1px;
    transition: all 0.4s ease-in-out;
    border-bottom: transparent solid 1px;
}

.bottom-vysko:hover {
    border-bottom: #ffd15c solid 1px;
}

@media only screen and (max-width: 1280px) { 

    .bottom-info {
        width: 75%;
    }


}

@media only screen and (max-width: 600px) {     
    .bottom {
        width: auto;
    }

    .bottom-info {
        width: auto;
        display:flex;
        flex-direction: column;
        justify-content: left;
    
        padding-bottom: 20px;
        border-bottom: rgb(255,255,255,.15) solid 1px;
    }
    
    .bottom-info-links {
        margin-top:30px;
    }    
    
    .bottom-copyrights {
        margin-top:20px;
        margin-right: 10px;
        text-align: center;
    }
    
    .bottom-copyrights > h1{
        color:rgb(255,255,255,.85);
        font-size: 15px;
        font-family: 'Mukta', sans-serif;
    }
    
    .bottom-vysko {
        text-decoration: none;
        color:#ffd15c;
        font-size: 17px;
        font-family: 'Mukta', sans-serif;
        padding-bottom: 1px;
        transition: all 0.4s ease-in-out;
        border-bottom: transparent solid 1px;
    }
    
    .bottom-vysko:hover {
        border-bottom: #ffd15c solid 1px;
    }
}