/* Set the default font as Montserrat because I am a Catalan */
html {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
  }

  /* Default color scheme */
  :root {
    --primary-color: #2F2235;
    --secondary-color: #60495A;
    --tertiary-color: #A7ACD9;
  }

  /* Body Styles */
  body {
    margin: 10px;
    padding: 30px;
    background-color: var(--tertiary-color);
  }

  /* Headings Styles */
  h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
  }

  /* Paragraphs Styles */
  p {
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.5;
  }

  /* Links Styles */
  a {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  a:hover {
    color: var(--secondary-color);
  }

  /* Buttons Styles */
  button {
    background-color: var(--secondary-color);
    border: none;
    color: var(--tertiary-color);
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  button:hover {
    background-color: var(--primary-color);
  }

  .white-bg {
    background-color: #ffffff; /* Set the background color to white for carousel text */
  }
