html {
    font-family: monospace;
    color: cornflowerblue;
    text-decoration: none;
    background-image:url(images/wcorpbg.png);
        background-repeat: no-repeat;
        background-attachment: fixed;

}

#container {
    width: 1200px;
    margin: 0px auto;
}

h1 {
    color: aliceblue;
    
}

h2{
    color:red;
}

small {
    font-size: 13px;
}

ul {
  list-style-image: url('images/25px-Charge.png');
}

.item3 ul {
    list-style-image: url('images/25px-Load.png');
    
}

body {
    text-decoration: none;
    margin: auto;
    width: 1200px;
    padding-bottom: 20px;
}

#output {
    color: aliceblue;
}

h1 a{
    text-decoration: none;
    color: aliceblue;
    
}

h1 a:hover{
    color:#beecff;
    
}
.item3 {
    grid-area: main;
    background-color: #b2c9ff;
}
.item3 a {
    text-decoration: none;
    color: cornflowerblue;
}
.item3 h1 {
    color: cornflowerblue;
}
.item3 h1:hover {
    color: #beecff;
}

.item3 h2 {
    color: cornflowerblue;
}
.item3 a:hover {
    color: #beecff;
    
}

h3 {
    color: aliceblue;
    
}
#header {
    margin: 0;
}

.layout {
    display: grid;
    grid-template-rows: auto;
    grid-template-areas:
        "main"
        "main";
    gap: 5px;
    padding: 8px;
}
.layout > div {
    padding: 10px;
    font-size: 15px;
}

