@charset "UTF-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

*:focus {
    outline: none;
}

body {
  background-color: #181717;
  color: #666666;
  font-family: OpenSans, sans-serif;
}

h1 {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  font-weight: normal;
  vertical-align: middle;
  text-align: center;
  line-height: 72px;
}

h1 a {
  display: inline-flex;
  align-items:center;
  color: #fff;
  font-family: OpenSans, sans-serif;
  font-size:1.2em;
  text-decoration: none;
}

h1 a:hover, 
h1 a:visited {
  color: #fff;
  text-decoration: none;
}

h2 {
  font-size: 1em;
}

h3,
.subtitulo {
  font-size: 1em;
  color: #fff;
  
}

p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

p:first-of-type {
	margin-block-start: 0em;
}

/* IDIOMA */
#selector_idioma {
  position: relative;
  margin-right: 1em;
  text-align: right;
}

#selector_idioma button {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
}

#selector_idioma button:hover {
  color: #fff;
}

#selector_idioma button[aria-selected="true"] {
  color: #fff;
}

#selector_idioma button[aria-selected="true"]:hover {
  cursor: default;
}

/* NAV */

#cssmenu ul {
  margin-left: auto;
  margin-right: auto;
  display: table;
}

#cssmenu > ul > li > span.separador {
  cursor: default;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#cssmenu > ul > li.active > a {
  color: #ffffff !important;
}

/* Content */
div#container {
  width: 720px;
  margin-left: auto;
  margin-right: auto;
}

div#content {
  width: 100%;
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
}

.column-100 {
  float: left;
  width: 100%;
  padding: 10px;
}

.column-66 {
  float: left;
  width: 66%;
  padding: 10px;
}

.column-50 {
  float: left;
  width: 50%;
  padding: 10px;
}

.column-33 {
  float: left;
  width: 33%;
  padding: 10px;
}

  .column-100 img,
  .column-66 img,
  .column-50 img,
  .column-33 img {
    max-width: 100%;
    max-height: 100%;
    /* display: block; /* remove extra space below image */
  }

/* Discografia */

.escuchalo {
  color: #fff;
  margin-left: 0.5em;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.tracklist li {
	margin-bottom: -0.5em;
	line-height: 1.5;
}
.clases li {
	margin-bottom: 0.5em;
}

/* Footer */

div#copyright {
  font-size: 0.8em;
  margin-top: 2em;
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-top: 1px solid #666666;
  padding-top: 0.8em;
  width: 68%;
}

div#copyright a,
div#copyright a:visited {
  color: #aaa;
}

div#copyright a:hover {
  color: #fff;
}


/* Fade between pages */
#container {
    animation: myfadeInAnimation 2s;
}

@keyframe myfadeInAnimation {
    from {opacity: 0;}
    to {opacity: 1;}
}
@-webkit-keyframes myfadeInAnimation {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Special Layout */
.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0 !important;
}