/* 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 {
  background-color: white;
  color: black;
  font-family: Papyrus;
  background-size: 100%;
  text-align: center;
  background-image: url('imagenes/gato57.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
}

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0.5rem 1rem;
}



ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  border: 1px solid #e7e7e7;
  overflow: hidden;
  background-color: #333333;
  top: 0;
  text-align: center;
}

ul div {
  background-color: black;
  border: 2px solid red;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
}

ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul li {
  float: left;
  border-right: 1px solid #bbbbbb;
  text-align: center;
}

ul li a:hover {
  background-color: #111111;
  text-align: center;
}

ul li:last-child {
  border-right: none;
  text-align: center;
}

#container {
                max-width: 900px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
                /* this centers the entire page */
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: #ED64F5;
                font-weight: bold;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }
            footer {
                background-color: #13092D;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }





            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }
