/* 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: "Comic Sans MS", cursive, sans-serif;
}
.navbar {
      background-color: #333;
      overflow: hidden;
      text-align: center; /* Centra los elementos dentro */
    }

    .navbar a {
      display: inline-block; /* Permite que se centren horizontalmente */
      color: white;
      text-align: center;
      padding: 14px 20px;
      text-decoration: none;
    }

    .navbar a:hover {
      background-color: #575757;
    }
    .cuadro {
      background: linear-gradient(to bottom, #f5f542, #42f542); /* Degradado "azul" */
      color: black; /* Color del texto */
      padding: 60px;
      border-radius: 10px; /* Bordes redondeados */
      width: 400px;
      height: 250px;
      display: flex;
      justify-content: center; /* Centra el texto horizontalmente */
      align-items: center; /* Centra el texto verticalmente */
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra sutil */
      position: relative;
      top: 10px;
      left: 450px;
    }
    