html {
    background-color: black;
	color: white;
	font-size: 14pt;
    font-family: monospace;
}

h1, h2 {
    color: aqua;
    font-size: 22pt;
    text-align: center;
}

h1:before, h1:after, h2:before, h2:after {
    content: "**";
}

#quotes, #about, #header, #menu {
    background-color: black;
    display: block;
    border: thick solid red;
    margin: 1em;
    padding: 1.5em;
    position: absolute;
    width: 25em;
}

#header {
    top: 0;
    left: 0;

}

#menu {
    top: 0;
    right: 0;
}

#quotes {
    bottom: 0;
    right: 0;
}

#about {
    bottom: 0;
    left: 0;
}

#footer {
    display: none
    }

