@import "main.css";

body{
 color : white;
 background : black;
}

img{
 border: 0;
}

A:link{
 color : aqua;
 text-decoration : none;
 }

A:visited{
 color : blue;
 text-decoration : none;
 }

A:hover{
 text-decoration : underline
 ;}

A:active{
 color: fuchsia;
 text-decoration : none;
 }
