/* Type */

  body, input, select, textarea {
    color: #2D3047; <-- This is a color code!
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-size: 16pt;
    font-weight: 300;
    line-height: 1.75;
  }

    @media screen and (max-width: 1680px) {

      body, input, select, textarea {
        font-size: 14pt;
      }

    }

    @media screen and (max-width: 1280px) {

      body, input, select, textarea {
        font-size: 12pt;
      }

    }

  a {
    -moz-transition: border-bottom-color 0.2s ease, color 0.2s ease;
    -webkit-transition: border-bottom-color 0.2s ease, color 0.2s ease;
    -ms-transition: border-bottom-color 0.2s ease, color 0.2s ease;
    transition: border-bottom-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
    color: #2D3047; <-- Here's another
    border-bottom: dotted 1px rgba(88, 88, 88, 0.5);
  }

    a:hover {
      border-bottom-color: transparent;
      color: #3185FC !important; <-- And another
    }