/*
Para definir:
  id se utiliza el #
  class se utiliza .
  para los elementos su nombre
*/


body, html {
  margin: 0;
  padding: 0;
  font: 13px raleway;
}

a {
  text-decoration: none;
}

nav {
  background: #333;
  line-height: 25px;
  padding: 10px 2%;
}

nav a {
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #eee;
  margin: 0 5px;
  padding: 3px;
  border-bottom: 3px solid #fff;
}

nav .selected {
  border-bottom-color: #73A641;
}

nav #title {
  font-size: 25px;
  text-transform: none;
  font-family: 'Indie Flower', cursive;
  font-style: italic;
  color: #fff;
  padding: 0;
  border-bottom: 0;
}

section {
  padding: 30px 20%;
  text-align: center;
  margin: 0;
  font-size: 17px;
}

h1 {
  color: #fff;
}

h1, h2 {
  font-family: Patua one;
  font-weight: 400;
}

#intro {
  background-image: url(../images/backpic.jpeg);
  background-size: 100%;
  background-repeat: none;
  background-attachment: fixed;
  background-position-y: -100px;
  box-shadow: inset 0 0 50px #000;
  padding: 130px 20%;
  background-color: rgba(255, 255, 255, 0.2);
}

#intro h1 {
  /*text-shadow: 0 0 10px #000;*/
  font-family: 'Anton', sans-serif;
  font-size: 60px;
  color:red;
}

#welcome {
  background-color: #79BEDB;
}

#welcome h1 {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}

#levels h1 {
  color: #73A641;
}

#levels .texto
{
  text-align: justify;
}

.level {
  margin: 20px auto;
}

.level h2 {
  color: #666;
  border-bottom: 1px solid #73A641;
  margin-bottom: 5px;
}

/*Redondear la imagen
recuerden que deben ser imagnes cuadradas, igualmente se puede solventar
agregando height:100px; ( debe ser la misma cantidad de px que el width)
*/
.level img {
  border-radius: 50%;
  width: 100px;
  border: 5px double #73A641;
}

.level p {
  margin: 0;
}

footer
{
  background-color: #333;
  color: #999;
}

.bloque{
  display: inline-block;
  vertical-align:top;
  padding:10px 50px;
}

.bloque ul{
  padding-left:0;
}

li{
  list-style: none;
}

footer h5 {
  padding: 10px;
  text-align: right;
  background-color: inherit;
}


.bloque a
{
  text-decoration: none;
  color: #999;
}


/*INVENTOS*/

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

/*Contacto*/

.contact-form{
  text-align: justify;
  line-height: 30px;
}

.button-enviar{
  background-color: Transparent;
  border-radius: 50px;
  border-color: green;
  cursor:pointer;
}

.button-enviar:hover{
  background-color: green;
  border-radius: 50px;
  border-color: green;
  cursor:pointer;
}

/*
Este comentario sirve para darle el efecto al button
.button-enviar span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button-enviar span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button-enviar:hover span {
  padding-right: 25px;
}

.button-enviar:hover span:after {
  opacity: 1;
  right: 0;
}*/


/*
Si tenemos una tipografia, que no esta instalada en el servidor
podemos crear una carpeta dentro de src llamada fuente y utilizar
@font-faces

@font-face {
    font-family: titulovolver;
    src: url("../fuentes/back_to_the_future/BTTF.ttf");
}*/
