body {
  background-color : black;
  background-image : none ;
  background-attachment : fixed;
  background-size : 12%;
  color : honeydew;
  font-size : 15px;
  font-family: Courier, monospace;
  text-align : center;
}

.top {
  font-size : 20px;
  margin : auto;
  padding : 10px;
  height : 200px;
  width : 500px;
  background-color : transparent;
  border : 2px solid white;
  border-bottom : 1px solid white;
  border-radius : 400px 400px 00px 0px;

}

.main {
  margin : auto;
  padding : 10px;
  height : 400px;
  width : 500px;
  background-color : transparent;
  border : 2px solid white;
  border-top : none;
  display : flex;
  
}

.mR {
  margin : auto;
  border : 1px solid red;
  border-left : none;
  height : 400px;
  width : 400px;
  
}

.mL {
  margin : auto;
  border : 1px solid blue;
  border-right : none;
  height : 400px;
  width : 100px;
  
}

 /* unvisted link */
    a:link {
    color : honeydew;
    text-decoration : none;
    }
    
/* visted link */
    a:visited {
    color : honeydew;
    text-decoration : none;
    }

/* mouse over link */
    a:hover {
    color : darkseagreen;
    font-weight : bold;
    text-decoration : none;
    }
    