/* 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." */

*{
padding: 0;
margin: 0;
}


@charset 'UTF-8'; 

body{ 
font-family: 'arial', cursive;
font-size: 14;
color: grey;
background-color: #FFFFFF;
margin: 20px; 
}


h1{
font-size: 30;
font-weight: bold; 
font-family: 'arial', cursive; 
font-style: normal; 
text-align: left;
color: black;

}

h2{
font-family: arial;
font-size: 18; 
text-align: left;
color: black;
}




#navbar {
  float: left;
  width: 40%;
  background: #F4F4F4;
  border: 1px solid #7C7C7C;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  
}
#navbar li {
  float: left;
  width: 100%;
}
#navbar li a {
  border-left: 1px solid #FFF;
  border-right: 1px solid #7C7C7C;
  color: #333;
  display: block;
  padding: .3em;
  text-decoration: none;
}




a:hover{
background-color:#7F7F7F;
color:#1D89D0;
font-family: 'arial', cursive;
border: 2px;
}

#fotos {

width: 900px;
height: 600px;
background: url(fotos/boira.png) left top repeat-x,
url(fotos/suelo.png) left bottom repeat-x,
url(fotos/casa.png) left bottom no-repeat;
background-color: #33CCFF;

-webkit-box-shadow: 36px 28px 34px 9px rgba(0,0,0,0.85);
-moz-box-shadow: 36px 28px 34px 9px rgba(0,0,0,0.85);
box-shadow: 36px 28px 34px 9px rgba(0,0,0,0.85);

border-radius: 50px 0px 50px 0px;
-moz-border-radius: 50px 0px 50px 0px;
-webkit-border-radius: 50px 0px 50px 0px;
border: 4px solid #000000;
}

      