/* Clases */
.amarillo {
    color: #dec01c;
}

.azul {
    color: #5087c3;
}

.background {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    background-color: #dbe2ea
}

.center {
    text-align: center;
    margin-top: 0;
    margin-right: 0.3125rem;
    margin-bottom: 0;
    margin-left: 0.625rem;
}

.cuerpo {
    color: #000080;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
}

.espacio { 
    margin-bottom: 0;
}

.fondo {
    color: #dbe2ea;
}

.left {
    text-align: left;
    margin-top: 0;
    margin-right: 0.3125rem;
    margin-bottom: 0;
    margin-left: 0.625rem;
}

.marino {
    color: #000080;
}

.rojo {
    color: #681100;
}

.titular { 
    color: #5087c3;
    font-size: 2.5rem;
    font-family: 'Open Sans', serif;
}

.transparente {
    color: #000000;
}

/* Elementos */

body {
    margin: 0;
    padding: 0;
    font-size: 1rem; /* Base font size */
    font-family: 'Open Sans', serif;
}

p {
    margin: 10px;
    margin-bottom: 0;
}

section{ 
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

/* @rules */

@page { 
    margin: 2.5cm 
}

/* Comportamiento vínculos */

a:link {
    color: #5087c3;
    text-decoration: underline;
}
    
a:active {
    color: #5087c3;
    text-decoration: none;
}
    
a:visited {
    color: #5087c3;
    text-decoration: underline;
}
    
a:hover {
    color: #dec01c;
    text-decoration: none;
}

/* Barra de navegación ##### */
    
.topnav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    border: 0.09375rem solid #681100;
    background-color: #dbe2ea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.topnav a {
    display: block;
    color: #5087c3;
    text-align: center;
    padding: 1rem 0.25rem;
    text-decoration: none;
    float: left;
}

.topnav a:hover {
    color: #dec01c;
}

.topnav a.active {
    color: #5087c3;
    text-decoration: none;
}

.topnav .icon {
    display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right; /* Para cambiar de ubicación la "hamburguesa" de la barra de navegación */
    padding-top: 1.5rem;
    padding-right: 3rem;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: fixed;}
  .topnav.responsive .icon {
    position: relative;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
