/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: clear;
  color: black;
  font-family: Verdana;
  margin: 0px; 
}

.background {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: yellow;
}

/* 
is there a better way than the absolute positioning and negative margin to center the div .content: div with background color a width and a hight?: 
*/ 


.content {
    width: 150px;
    height: 150px;
    background-color: clear;

    position:absolute;
    top:50%;
    left:58%;
    margin-left:-100px;/* half width*/
    margin-top:-300px;/* half height*/
}

#onward{
    width: 150px;
    height: 150px;
    background-color: clear;

    position:absolute;
    top:55%;
    left:58%;
    margin-left:-100px;/* half width*/
    margin-top:-300px;/* half height*/
}
          
        

        
    


  @font-face {
    font-family: 'ancientmoderntales-a7po-webfont';
    src: url('New folder/ancientmoderntales-a7po-webfont.woff2') format('woff2'),
         url('New folder/ancientmoderntales-a7po-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
  