﻿body.TheWizard {
    background-color: #236192;
}
h1
{
    color:white;
    text-align:center;
}
ul 
{
    list-style:none;
    background:#808080;

}
    ul li
    {
        display:inline-block;
        position:relative;
    }
    ul li a
      {
       display:block;
       padding: 20px 25px;
       color:white;
       text-decoration:none;
       text-align: center;
       font-size: 20px;
        }
        ul li ul.DropDowns li 
        {
            display: block;

        }
        ul li ul.DropDowns 
        {
            width:100%;
            background: #808080;
            position:absolute;
            z-index:999;
            display:none;
        }
        ul li a.hover 
        {
            background:#333;
        }
        ul li:hover ul.DropDowns
        {
            display:block;
        }



.Container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
    padding: 40px;
    gap: 40px;
}

.video-Text-Container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

/* Fix video/text layout */
.Video-Wrapper iframe {
    max-width: 100%;
    border-radius: 10px;
}


.Play-Button {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: crimson;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .Play-Button:hover {
        background-color: darkred;
    }

.ScreenShot {
    max-width: 320px;
    color: white;
    text-align: center;
}

.TextScreenShot {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.4;
}

.TextVideoShot {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.4;
}

.Text-Wrapper {
    max-width: 320px;
    color: white;
    text-align: center;
}


