body {
    display: flex;    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #1a1500;
    font-family: Arial, sans-serif;
}

.video-text-button{
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 10px; /* Vytvoří mezery mezi tlačítky */
   
}
.video-text-button:hover {
    color: rgb(204, 130, 57); 
}

.barvaTranslate{
    transition: color 0.4s;
    color: rgb(208, 158, 108);  
}
.barvaTranslate:hover{
    color: rgb(204, 130, 57); 
}

.li{
    transition: color 0.4s;
    color: rgb(208, 158, 108);  
}
li:hover span {
    color: rgb(204, 130, 57); 
}

.video-container {
    width: 100%;
    max-width: 600px;
    margin: 20px;
    position: relative;
}

#video-player {
    width: 60%;
    margin: auto;
}


#video-list {
    margin-top: 20px;
    height: 100vh;

}

#video-list ul {
    list-style-type: none;
    padding: 0;
    font-size:larger;
    margin: 0;
    font-family: "Oswald", sans-serif;

}

#video-list li {
    padding-bottom: 20px;
    margin: 0 20px;
    width: 400px;
    cursor: pointer;
    color: rgb(208, 158, 108);    
    position: relative;
    transition: all 0.4s ease;
}

#video-list li:hover {
    /*background-color: #45be90;*/
    margin-bottom: 60px;
}

.date {
    font-weight: normal;
    font-size: small;   
}

.title {
    font-weight: bold;
    text-transform: uppercase;
}

.detail {
    font-size:medium;
    display: none;    
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    /*background-color: rgb(199, 86, 86);
    border: 1px solid #820ea5;*/    
    box-shadow: 0 4px 8px rgba(75, 37, 37, 0.1);
}

@keyframes fadeIn {
    from 
    {
        opacity: 0;
    }
    to
    {
        opacity: 1;
    }
}

#video-list li:hover .detail {
    display: block;
    opacity: 0;
    animation: fadeIn .6s 0.1s forwards;
}


