/* 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: white;
  color: black;
  font-family: Verdana;
}

h3
{
  color: #F5A9F2;
}

div.contenedor
{
  background-color: #F5A9F2; 
}

div.contenedor-interior
{
  background-color: #fff;
  font-family: Orbitron;
}
  
div.degradado-rosa
{
  background: -webkit-radial-gradient(#fff,  #F5A9F2, blue); /* Safari 5.1 to 6.0 */
  background: -o-radial-gradient(#fff,  #F5A9F2, blue); /* For Opera 11.6 to 12.0 */
  background: -moz-radial-gradient(#fff,  #F5A9F2, blue); /* For Firefox 3.6 to 15 */
  background: radial-gradient(#fff,  #F5A9F2, blue); /* Standard syntax */
  width: 50%;
  -webkit-border-radius: 5px 10px;  /* Safari  */
  -moz-border-radius: 5px 10px;     /* Firefox */
}