/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


        body {
            background-image:url('images/bgmetalplain.jpg');
            background-size:cover;
            background-color: rgb(63, 24, 4);
            margin: 40px 40px;
        }
        h1   {
            color: rgb(105, 241, 0);
            font-family:"Rubik Distressed", system-ui;
            font-weight: 400;
            font-size:6.5vw;
            line-height: 0.2;
        }
        h2 {
            font-family: "Black Ops One", system-ui;
            color:rgb(231, 231, 231);
            text-align:center;
        }
        h3{
            font-family: "Black Ops One", system-ui;
            color: rgb(105, 241, 0);
            font-size:1.5vw;
            margin:2%;
            font-weight: 400;
            line-height: 0.5;
        }
        p    {
            color: rgb(231, 231, 231);
            font-family: "Black Ops One", system-ui;
            font-weight: 400;
            font-size:1vw;
            margin:2%;
        }

        a {
            color: rgb(231, 231, 231);
            font-weight: bold;
        }

        a:hover {
            color:crimson;
        }

        #maintitle {


            margin-left: 80px;
        }

        #navigation {
            background-image: url('images/metalfloor.jpg');
            float: left;
            margin-right: 40px;
            width: 210px;
            border-style: solid;
            border-width: 5px;
        }

        #navbutton {
            float:left;
            width: 150px;
            margin: 20px 20px;
        }


        #content {
            margin-right:10px;
            margin-left:250px;
            border-style: solid;
            border-width: 5px;
            background-color:rgb(63, 24, 4);
            
        }

        #footer {
            clear: both;
        }
