.YouTube { 
    width: 100%; 
    position: relative;
    margin: 25px auto;
    padding: 15px;
}

.YouTube video {
    border: 20px solid rgba(255,255,255,1);
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,.5);
    display: block;
    margin: 0 auto;
}

.FloatingImage { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    border: 20px solid rgba(255, 255, 255, 1);
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.FloatingImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.play-button {
    position: absolute;
    font-size: 40px;
    color: white;
    
    background: rgba(14, 14, 14, 0.7);
    border-radius: 50%;
    width: 65px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.play-button:hover {
    background: rgb(144 30 120);
}
