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

  body {
        font-family: "Courier New", "monospace";
        color: lightgrey;
        background: linear-gradient(black, purple);
        min-height: 100vh;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;
      }
      h1 {font-family: "Courier New", "monospace";
          font-size: 50px; 
          color: magenta; 
          text-align: center;
          }
    	h3 {text-align: center
    }
      a {color: magenta; 
      }
      a:hover {
          background-color: lime
      }
      .intro {
        background-color: black;
        color: lime;
        border: 2px dashed lime;
        border-radius: 0px;
        padding: 30px;
        margin: 40px 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        text-align: center
      }
    	.Habitos{
        text-align: left
    }
    .preciso{
      text-align: left;
      color: lime;
    }
      .keepsake{background-color: lightgray;
              color: darkmagenta;
              border: 2px dotted purple;
              border-radius: 0px;
              padding: 30px;
              margin: 40px 0;
              box-shadow: 0 4px 8px rgba(0,0,0,0.2);
              text-align: center
              }
    