@viewport{
    zoom: 1.0;
    width: extend-to-zoom;
}

@font-face {
  font-family: minecraft;
  src: url(Silkscreen/Silkscreen-Regular.ttf);
}

@font-face {
  font-family: minecraft2;
  src: url(VT323/VT323-Regular.ttf);
}

/*****Scroll bar*************************************************************************************/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {

  box-shadow: inset 0 0 5px #1F1F1F; 
  border-radius: 10px;
  background: #1F1F1F;
/*  margin: 73px;*/
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #898989; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #737373; 
}
/*****Vše*****************************************************************************************/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
	background: #1F1F1F;
/*	margin: 73px 0px 0px 0px;*/
	font-family: 'Quicksand', sans-serif;
	/*font: 14px Verdana;*/
	/*min-width: 960px;*/
    word-break: break-word;
}

::-moz-selection { /* Code for Firefox */
  color: #fff;
  background: #700B97;
}

::selection {
  color: #fff;
  background: #700B97;
}
/*                https://colorhunt.co/palette/0000003e065f700b978e05c2  */
/*
#particles-js{
    background-size: cover;
    height: 680px;
}
/****Header******************************************************************************************/

header {
	height: 73px;
	position: fixed;
	top: 0px;
/*	background:#1F1F1F;*/
/*	background:#3E065F;*/
	background: rgba(62,6,95,0.95);
	width: 100%;
    z-index: 100;
    
}

nav ul {
/*
	margin: 0px;
	list-style-type: none;
	position:relative;
	z-index:200;
*/width: 100%;
   display: table;
   text-align: center;
}

nav ul li {
/*
	float: left;
	padding: 0px;
	margin: 0 5px;
	font-size: 17px;
	height: 73px;
	line-height: 4.3em;	
*/
    
     display: inline-block;
     float: none;
}
/*
nav ul li:hover, .aktivni {
	background: #ffbb00;
	box-shadow: 0px 0px 5px black;
}*/
/*----------------------*/
nav ul a {
	float: left;
	padding: 0px 40px;
	margin: 0 5px;
    
    
	font-size: 17px;
	height: 73px;
	line-height: 4.3em;	
}

nav ul img{
/*    width: 265px;*/
    height: 63px;
    margin: 5px 5px;
}

nav ul a:hover, .aktivni {
    transition:0.5s;
	background: rgba(112,11,151,0.5);
/*	box-shadow: 0px 0px 5px black;*/
}
/*------------------*/
nav a {
	color: white;
	text-decoration: none;
}


/******Main*******************************************************************************************/

main{
/*
    max-width: 500px;
    padding: 100px auto;
    color: #8E05C2;
*/
}
.main{
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 100px;
/*    color: #8E05C2;*/
    color: #fff;
}

.tlacitka button{
    background: rgba(0, 0, 0, 0);
    color: #fff;
    border: 4px solid #8E05C2;
    border-radius: 20px;
    width: 100px;
    height: 30px;
    text-align: center;
    margin: 0 auto;
}
.tlacitka button:hover{
    transition: 0.5s;
    background: #8E05C2;
    box-shadow: 0 0 20px #8E05C2;
}
.tlacitka div{
    display: inline-block;
    width: 47%;
    margin: 1%;
    text-align: center;
}
.ip button{
    position: relative;
}
.ip button:before{
    content: "Zkopírováno!";
    position: absolute;
    bottom: -2px;
    right: -4px;
    background: #8E05C2;
    padding: 8px 10px;
    border-radius: 20px;
    font-size: 10px;
    width: 80px;
    display: none;
}
.ip.active button:before{
    display: block;
}
.ip input{
    position: absolute;
    top: -500px;
}

h1{
    text-align: center;
    font-size: 50px;
    font-family: minecraft;
}
h2{
    text-decoration: underline;
    font-size: 30px;
    margin-bottom: 10px;
    font-family: minecraft2;
}
p{
    margin-left: 10px;
}
.pravidla{
    margin-left: 20px;
}
.pravidla li{
    margin: 10px;
}

.odkaz-nad-img{
    overflow: hidden;
    width: 60px;
    height: 60px;
    position: absolute;
}

.odkaz-nad-img:hover img{
    transform: scale(1.2)
}

.img-odkaz{
    transition: transform .5s ease;
    width: 60px;
}
/******Footer**********************************************************************************************/
footer {
	height: 73px;
	width:100%;
	color: white;
    padding: 20px 0 0 0;
/*    background: #3E065F;*/
    background: rgba(62,6,95,0.6);;
    text-align: center;
/*    position: absolute;*/
/*    bottom: 0;*/
}

footer a {
	color: 	#fff;
	text-decoration: underline 1px #fff;
}
/*************************************************************************************************************/
@media only screen and (max-width: 600px){
    nav ul a{
        padding: 0 20px;
    }
}