h3 {
  color:blue;
  border:dashed blue 2px;
  background-color:yellow;
  padding:5px;
  text-align:center;
}

p {
  color:blue;
  border:dashed blue 2px;
  background-color:yellow;
  padding:5px;
}

img {
  height:150px;
  border:dashed yellow 2px;
  background-color:blue;
}

a {
  color:yellow;
  background-color:blue;
  text-decoration:dashed underline;
}

a:hover {
  color:blue;
  background-color:yellow;
  text-decoration:dashed underline;
}

.dw2 {
  color:red;
  background-color:yellow;
  text-decoration:dashed underline;
}

.dw2:hover {
  color:yellow;
  background-color:red;
  text-decoration:dashed underline;
}

html {
  color:white;
  background-color:black;
  font-family:"Comic Sans MS";
}

.dw {
  color:yellow;
  border:dashed yellow 2px;
  background-color:red;
}

img .dw {
  color:red;
  border:dashed red 2px;
  background-color:yellow;
}

.outlink:after {
  content:"↗";
}

::selection {
  color:yellow;
  background-color:blue;
}

::-webkit-scrollbar {
  color:yellow;
}

::-webkit-scrollbar-track {
  background:black;
}

::-webkit-scrollbar-thumb {
  background:yellow;
}

::-webkit-scrollbar-thumb:hover {
  background:blue;
}

::-webkit-resizer {
  background:yellow;
}

@media only screen and (max-width:800px) {
  img {
    height:100%;
    width:100%;
  }
}