body, html {
    height: 100%;
    margin: 0;
    font-family: "Roboto", sans-serif;
    color: white;
    background-color: black; /* Vychozi fallback barva */
    /*opacity;*/
    overflow-x: hidden; /* Zamezeni horizontalnimu posouvani */
    overflow-y: auto;   /* Povolit vertikalni scrollovani */
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('../images/1.jpg');
    opacity: 0.5;
    z-index: 0; /* Zajistuje, ze pozadi zustane za obsahem stranky */
    animation: zoom 10s infinite alternate;
    overflow: hidden; /* Skryje preteceni behem zoomu */
    pointer-events: none; /* Umozni interakci s obsahem nad pozadim */
}

@keyframes zoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}


.container {
    padding: 20px;
    z-index: 1; /* Obsah bude nad pozadim */
    position: relative;
   
}

.content {   
    z-index: 2;
    text-align: center;
    padding: 20px;
    color: white;
    position: relative; 
}

.btn-enter {
    transition: all 0.2s;
    padding: 15px 30px;
    font-size: 1.5em;
    background-color: #c70039;
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 15px;
    display: inline-block;
}

.btn-enter:hover {
    transition: all 0.2s;
    border-radius: 30px;
    
    
    /*
    background-color: #ede9a5;
    color: black;
    */
}

.details {
    margin-top: 50px;
    color: white;
}
        
.title-h {
    /*
    background: linear-gradient(to right, #b8860b, #ffd700, #daa520, #ffdf00, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    */
  
    color: #FFFFFF;    
    
    /*font-family: "Bebas Neue", Sans-serif;*/
    font-size: clamp(3rem, 8vw, 6rem); /* Dynamicka velikost textu s maximem 6rem */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.8px;
}