body{
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    }
    
    /*----- This is the  start for formatting the menu -----*/
    nav {
        background-color: #b40412;
    }
    
    
    nav ul{
        list-style-type: none;
        padding: 0px 2rem;
        margin: 0;
        display: flex;
        font-weight: 400;
    }
    
    
    nav a {
        text-decoration: none;
        color: white;
        display: block;
        padding: .8rem 2rem;
    }
    
    nav li.active a {
        background-color: #006400;
        color: #ffffff;
    
    
    }
    
    nav a:hover {
        color: white;
    }
    
    /*----- This is the  start for formatting the lists -----*/
    
    main ol {
        padding: 0.5rem 3vw;
        background-color: #efefef;
        list-style-type: circle;
    }
    
    main dl {
        border: 1px solid black;
        border-radius: 0.5rem;
        padding: 2rem;
        margin: 2rem;
    }
    
    
    
    main dl dt {
        color: #b40412;
        font-weight: 700;
    }
    
    main dl dd {
        color: #006400;
        font-size: .9rem;
    }
    
    main ul {
        list-style-type: lower-roman;
    }
    
    main ul li {
        margin-bottom: .5rem;
        font-size: .9rem;
    }
    
    /*----- This is the  start for formatting the footer -----*/
    
    footer {
        background-color: #eaeaea;
        text-align: center;
        color: #006400;
        padding: 1rem 0;
        font-size: .8rem;
    
    }
    
    footer a {
        color: #006400;
    }