/* screen-style.css */

/* SCREEN - ZAČÁTEK */
*{
  font-family: Nunito,sans-serif;
}

.mobile{
display: none;
}

main{
  display: grid;
}

/* SCREEN - KONEC */ 

/* HEADER - ZAČÁTEK */
header{
  padding: 20px;
  text-align: center;
}

/* Neviditelný nadpis */
header h1{
  position: relative;
  left: 50%;
  transform: translate(-50%);
  z-index: ;
}

/* HEADER - KONEC */

/* NAV - ZAČÁTEK */
nav{
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
} 

nav ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;

}

nav li{
  float: left;
  background-color: #333;
}

nav li a, .dropbtn{
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  min-width: 160px;
}

nav li a:hover, .dropdown:hover .dropbtn{
  background-color: #e40050;
}

nav li.dropdown{
  display: inline-block;
}

/* NAV - KONEC */

/* MAIN - ZAČÁTEK */
main{
  margin: 0px 0px 20px 0px;
}

section{
  min-height: 1000px;                                                                                          
  position: static;
  justify-content: center;
  min-width: 900px;
  max-width: 1000px;
  margin: 0 auto
}

section h2.vanish, article h3.vanish{
  display: none; 
}

.uprostred{
  position: static;
  text-align: center;  
}

.vlevo{
  position: static;
  text-align: left;  
}

.button{
  background-color: #e40050; /* Red */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  min-width: 160px;
  position: absolute;
  transform: translate(-50%);
  top: 50%;
}

.button:hover{
  background-color: #980539;
}


.trailer_box{ 
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  margin: 20px;
}

.trailer_box #content_iframe_11{ 
  position: absolute;
  height: 100%;
  width: 100%;
}

form{
  margin: 20px 20px 20px 20px;
}

table{
  border-collapse: collapse;
  padding: 10px;
}

table th{
  padding-bottom: 15px;
}
 
table tbody td{
  padding: 10px;
} 

.lichy{
  background-color: silver;
}
/* MAIN - KONEC */

/* FOOTER - ZAČÁTEK */
footer{
  position: static;
  left: 0; 
  width: 100%;
  background-color: #333;
  font-size: large;
}

footer h2{
  color: white;
  font-size: large; 
}

.footer-menu{
  list-style-type: none;
  color: #6f6f6e;
  max-width: 450px;
  margin: 20px 20px 40px;
}

.item{
  margin-top: .5625rem;
}

footer a:link, footer a:visited{
  color: #6f6f6e;
  cursor: pointer;
  text-decoration: none;
  margin-top: .5625rem;
}

footer a:active{
  color: white;
  text-decoration: underline;
}

.odkaz:hover{
  text-decoration: underline;
}

.non-active:active{
  color: #6f6f6e;
  text-decoration: none;    
}

.block{
display: flex;
position: relative;
text-align: left;
margin: 0;
left: 0;
}
/* FOOTER - KONEC */