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


/* Configuraciones de la página */

body {
  color: #191970;
  font-family: 'Trattatello';
  font-size: 150%;
  background-image: url('https://grammepheraia.neocities.org/images/treboles.png');
  background-attachment: scroll;
  background-size: cover;
  background-color: rgba(34, 139, 34,1);
  background-repeat: repeat-y;
}


/* configuraciones del contenido*/
  /*título*/
    .nombre{
      position: absolute;
      top: 45px;
      left: 300px;
      width: 900px;
      z-index: 2;
    }
    h1 {
    color: #418A41;
    font-size: 200%;
    z-index: 2;
    }
    
    .prueba {
      color: orange;
      font-weight: bold;
    }
    .centro{
      margin:5px 5%;
    }
    
    /*h1 + p {
      font-size: 200%;
    } */
    h1 + p .prueba {
      color: yellow;
      background-color: black;
    }
    
    /*configuraciones de los links*/
      a:link {
        color: Teal;
        text-decoration: none;
      }
      
      a:visited {
        color: #8B4513;
        text-decoration: none;
      }
      a:hover {
        text-decoration: none;
      }
      

/*configuraciones de las secciones */
  /*News anchor*/
  .fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 1516px;
    height:40px;
    border: 3px solid #73AD21;
    text-align: justify;
    background-color:DarkSeaGreen;
    z-index: 3;
    font-size: 25px;
  }
  .scrolling-text{
   overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    animation: scroll 15s linear infinite;
    margin: 0 auto; 
  }
   @keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }
  /*seccion cosas que hice*/
  .left {
    position: absolute;
    top: 90px;
    left: 60px;
    width: 250px;
    height: 250px;
    /*border: 3px solid red;*/
  }
   /*seccion cosas que leí*/
  .right {
    position: absolute;
    top: 90px;
    right: 60px;
    width: 250px;
    height: 250px;
    /*border: 3px solid red;*/
  }
  .button{
    cursor: pointer;
  }
  
   /*seccion cosas que jugué*/
  .botright {
    position: absolute;
    bottom: 90px;
    right: 60px;
    width: 250px;
    height: 250px;
    /*border: 3px solid red;*/
  }
  
   /*sección cosas que escuché*/
  .botleft{
    position: absolute;
    bottom: 40px;
    left: 60px;
    width: 250px;
    height: 250px;
    /*border: 3px solid red;*/
  }
  /*sección cosas que escuché*/
  .central{
    position: absolute;
    top: 230px;
    left: 300px;
    width: 940px;
    height: 450px;
    padding: 5px;
    border: 3px solid red;
    margin-bottom: 20px;
    z-index: 2;
  }
  /*lilguy image*/
  
  .left,.right,.botright,.botleft,.central{
     border-radius: 20px;
     font-size: 20px;
  }
  
  .boton{
    z-index: -1;
  }
  .nextpage{
    z-index: 2;
  }
  
  
  
