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

* {
  box-sizing: border-box;
}

body {
  background-color: #e3f6c8;
  color: #14274e;
  font-family: Verdana, Arial, sans-serif;
  width: 60%;
  margin: auto;
}

header {
  background-color: transparent;
  text-align: center;
  padding: 10px;
  width: 50%;
}

/* yo quería que esto fuese la barra de navegación, we'll see */

ul.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: transparent;
  width: 100%;
}

ul.topnav li {float: left;}

ul.topnav li a {
  display: block;
  text-align: right;
  float: right;
  color: snow;
  font-size: 2em;
  font-family: 'Workbench', monospace;
  padding: 2px 10px 2px;
  text-decoration: none;
}

ul.topnav li a:hover:not(.active) {background-color: #e3f6c8; color: #14274e}

ul.topnav li.right {float: right; font-family: 'Workbench', monospace;}

.editorial{background-color: #14274e}

.apuntes {background-color: #f89ccc; color: #403f7a}

.entrevistas {background-color: #fc8500; color: #013931}

.etcetc {background-color: #4ea800; color: #ffe397}

@media screen and (max-width: 600px) {
  ul.topnav li.right, 
  ul.topnav li {float: none;}
}


/* estos códigos refieren todos a títulos, párrafos etc */

.titular /* me estoy inventando esto */ {
  font-family: 'Workbench', monospace;
  text-align: left;
  color: #14274e;
  margin-top: 40px;
  margin-bottom: 1px;
  font-size: 3em;
}


h1 /* para títulos */ {
  font-family: 'Courier New', monospace;
  text-align: left;
  color: #14274e;
  margin-bottom: 20px;
  font-size: 2em;
}

h2 /* para highlights */ {
  font-family: 'Courier New', monospace;
  text-align: left;
  background-color: snow;
  color: #14274e;
  margin-bottom: 20px;
  width: 60%;
  font-size: 1.5em;
}

p /* texto normal */ {
  text-align: left;
  text-indent: 50px;
  color: #14274e;
  font-family: Verdana, Arial, sans-serif;
  font-size: 1em;
}

.letra-chica {
  text-align: left;
  text-indent: 10px;
  color: #14274e;
  font-family: Verdana, Arial, sans-serif;
  font-size: 0.8em;
  padding: 0;
  margin: 0;
}

a:link /* links */ {
  font-family: 'Courier New', monospace;
  color: #14274e;
  font-weight: bold;
  text-decoration-line: underline;
  text-decoration-style: dashed;
}

a:hover {
  font-family: 'Courier New', monospace;
  color: #14274e;
  font-weight: bold;
  text-decoration-line: underline;
  text-decoration-style: dashed;
}

a:visited {
  font-family: 'Courier New', monospace;
  color: #14274e;
  font-weight: bold;
  text-decoration-line: underline;
  text-decoration-style: dashed;
}