/* 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: url(../img/estrellas.jpg);
  background-size: cover;
  color: white;
  font-family: Times,Arial,Verdana;
}
h1 {
    font-family: Times,Arial,Verdana;
    font-size: 50px
}
h2 {
    font-family: Times,Arial,Verdana;
    font-size: 35px   
}
p {
    font-family: Times,Arial,Verdana;
    font-size: 15px
}
p1 {
  margin: 10px;
  background: blue;
  border-radius: 6px;
  color: black;
  font: 14px/24px;
  padding: 20px 10px;
  box-shadow: -1px 2px 5px 1px rgba(0, 0, 0, 0.7);
  display:block;
}
p2 {
    font-family: Helvetica,Arial,Verdana;
    font-size: 25px
}
header, footer, section, article, aside {
  margin: 10px;
  background: black;
  border-radius: 6px;
  color: white;
  font: 14px/24px;
  padding: 24px 15px;
  box-shadow: -1px 2px 5px 1px rgba(0, 0, 0, 0.7);
  display:block;
}
header, footer {
  text-align:center;
  clear: both;
}

section {
  float: left;
  width: 60%;
}

aside {
  float: right;
  width: 25%;
}