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

@font-face {
  font-family: 'vcr_osd_mono';
  src: url('/vcr_osd_mono.woff2') format('woff2'),
       url('/vcr_osd_mono.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
.container {
  max-width: 500px;       /* ancho máximo del contenido */
  margin: 40px auto;      /* centrado horizontal + margen arriba/abajo */
  padding: 20px;          /* espacio interno */
  background-color: #fff; /* fondo blanco para diferenciar del fondo */

}
.content {
  padding: 20px;
  line-height: 1.6;
}
.header {
  text-align: center;
  padding: 20px;
  border-bottom: 3px solid navy;
}
 #GIF {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1000; /* siempre arriba de otros elementos */
    width: 150px; /* tamaño opcional, puedes cambiarlo */
    height: auto;
  }

a:link {
    color: blue;
}

a:visited {
    color: red;
}
a:hover {
    text-decoration: none;
    color: blue;
    background-color: #dd0000;
}

body {
  
  background: white url(BG.gif) top right;
  color: navy;
  text-transform: capitalize;
  font-family: 'vcr_osd_mono', monospace;
  
  
}
p {
    line-height: 21px;
    text-align: center
}
p:first-of-type {
    font-weight: bold;
    font-size: 30px;
}

h1 {
    color: yellow;
    background-color: blue;
}
h2 {
    margin: 10px;
    padding: 10px;
    border-style: dashed;
    border-width: 3px;
    border-left-width: 10px;
    border-right-width: 10px;
    border-color: red;
}
h3 {
    margin: 10px;
    padding: 5px;
    border-style: dashed;
    border-width: 2px;
    border-left-width: 5px;
    border-right-width: 5px;
    border-color: blue;
}
abbr {
    font-style: italic;
    text-transform: uppercase;
    color: #ff0000;    
}
strong {
    font-style: italic;
    text-transform: uppercase;
}

#audio {
    background-color: #ccc;
    padding: 20px  
}


