body {background-color: black}
    

  ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: scroll;
        font-size: 25px;
        width: auto;
        background-color: black;
        }

    li {
        float: left;
        }
    li a {
       display: block;
       color: orangered;
       text-align: center;
       padding: 20px;
       text-decoration: none; 
        }

    li a:hover {
            background-color: black;
        }
        a:link {
            color: orangered;
            background-color: transparent;
            text-decoration: none;
        }
        a:visited {
            color: darkgray;
            background-color: transparent;
            text-decoration: none;
        }
        a:hover {
            color: rosybrown;
            background-color: transparent;
            text-decoration: underline;
        }
        a:active {
            color: rosybrown;
            background-color: transparent;
            text-decoration: none;
        }

img {
    display: block;
    margin-left: auto;
    margin-right: auto
}

p {color: white;font-size: 20px;}

h1 {color: lightcoral;font-size: 45px;}

.center {
    text-align: center;
}