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

        .main{
          font-family: Corbel;
          font-style: italic;
          display:table;
          margin-top:10px;
          width: 710px;
          height: 890px;
          margin: auto;
        }
        header{
          width: 700px;
          height: 250px;
          margin: auto;
          color:#D097DB;
          border-bottom: 8px solid #D097DB;
        }
      
        /*Barra de Navegacion*/  
        .navbar {
          font-family: Corbel;
          font-style: italic;
          width: 660px;
          margin: auto;
          top: 0px;
          background-color: #732882;
          background-size: cover;
          color: white;
          padding: 10px 20px;
        }
        .nav-list {
          display: flex;
          list-style: none;
        }
        .nav-list li {
          margin-right: 20px;
        }
        .nav-list li:last-child {
          margin-right: 0;
        }
        .nav-list li a {
          text-decoration: none;
          color: white;
          font-size: 18px;
          transition: color 0.3s ease-in-out;
        }
        .nav-list li a:hover {
          font-weight: bold;
          color: #D097DB;
          /* Change the color on hover */
        }
        .rightNav {
          text-align: right;
        }
        #search {
          padding: 8px;
          font-size: 16px;
          border: 2px solid #fff;
          border-radius: 5px;
        }
        .btn {
          background-color: #ffd700;
          color: #000;
          border: none;
          padding: 8px 12px;
          border-radius: 5px;
          cursor: pointer;
          transition: background-color 0.3s ease-in-out;
        }
        .btn:hover {
          background-color: #000;
          /* Change the background color on hover */
          color: #ffd700;
        }
        
        /*Recuadro flotante*/
       .heading {
          border: 1px solid MediumPurple;
          background: linear-gradient(#DAC6F7 , #8D0EE6 55%, #B18BCC); 
          color: #FFFFFF;
          text-shadow: 2px 2px 3px #8D0EE6;
          text-align: center;
          border-radius: 16px;
          padding: 5px;
          box-sizing: border-box;
          flex-shrink: 0;
      }
        .box1 {
          font-family: Corbel;
          font-size: 18px;
          color: white;
          text-shadow: 2px 2px 3px #501C5C;
          width: 280px;
          height: 250px;
          border: 7px solid #803B8F;
          border-radius: 24px;
          padding:8px;
          background-color:#803B8F;
          margin: 10px;
          overflow: auto;
        }