﻿
*{
    padding: 0;
    margin: 0;
}

h1 {
    text-align: center;
    color: #ffffff;

}

body.EscapeRoom {
    background: linear-gradient(to bottom, #2c003e, #000000);
    
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 18px;
    line-height: 1.6;
}

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;
        }

p {
    color: white;
}

strong 
{
    color:white;
}
