
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
img{
 padding-left: 40px;
 width: 900px;
 height: 500px;
 object-fit: cover;

}

body{
    background:#111;
    color:white;
 
}
p{
  font-size: 24px;
  font-family: 'Century Gothic', 'Apple Gothic', sans-serif;   
  letter-spacing: normal;
  padding-left: 40px;
  padding-right: 30px;
  margin-bottom: 25px;
}

header{
    display: flex;
    justify-content: space-between; /* nadpis vlevo, menu vpravo */
    align-items: center; /* srovná do stejné výšky */
    background-color: black; /* černý obdélník */
    font-family: 'Century Gothic', 'Apple Gothic', sans-serif;
}

/* menu*/

nav{
    font-size: 20px;
    background:black;
    display:flex;
    justify-content:flex-end; 
    padding:20px 50px;
    padding-right:20px
    position:sticky;
    top:0;
    z-index:1000;
    flex-direction: column; /* dá odkazy pod sebe */
    gap: 10px;
}

nav ul{
    list-style:none;
    display:flex;
    gap:30px;
}

nav ul li{
    position:relative;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    padding:10px;
    display:block;
    transition:0.3s;
}

nav ul li a:hover{
    color:red;
}

/* podslozky */

nav ul li ul{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#1a1a1a;
    min-width:220px;
   
}

nav ul li:hover ul{
    display:block;
}

nav ul li ul li{
    width:100%;
}


/* hlavní nadpis */
.title{
  color: white;
  text-align: left;
 font-family: 'Trebuchet MS', 'Lucida Sans Unicode', sans-serif;
}
.title::after{
  content:"";
  display:block;
  width:180px;
  height:3px;
  background:#8f1d1d;
  
  }
  
h1{
  color: white;
  font-size:30px;
  text-align: left;

 padding-left: 40px;
}

/* menší nadpisy */

.podnadpis{
  color:white;
  text-align:center;
  margin-top:20px;
  font-size:40px;
 

}
.text2{
text-align:left
}

.odsazeni{
  padding-left: 40px;
}

h2{
  color: rgb(128,0,16);
  
  font-size: 33px;
  padding-left: 40px;
}

h3{
  font-size: 30px;
  text-align:left;
}

h4{
  font-size: 30px;
  text-align:center;
  margin-top: 40px;
}

/* footer*/

footer{
    background:black;
    text-align:center;
    padding:30px;
    font-size:20px;
    font-family: 'Century Gothic', 'Apple Gothic', sans-serif;
    
    
    
}