body {
	background: #F7F9FC;
    color: #575F7D;
    font-family: "PT Serif", serif;
    font-size: 17px;
    font-weight: normal;
}

h1, h2, h3 {
    font-family: "Roboto", sans-serif;
}

h1  {
    color: #1D3461;
    font-size: 32px;
    font-weight: 900;
}

h2 {
    color: #1D3461;
    font-size: 20px;
    font-weight: lighter;
    font-weight: 500;
}

a {
    font-family: "Roboto", sans-serif;
    text-decoration: none;
    color: #6B72E1;
    font-weight: 600;
    font-size: 16px;
}

a:hover {
    color: black;
}


/* Class / Div */


.container {
    width: 700px;
    margin: 40px auto;
}

@media (max-width: 960px) {
  /* For a screen < 960px, this CSS will be read */
  .container {
    width: 700px;
  }
}
@media (max-width: 720px) {
  /* For a screen < 720px, this CSS will be read */
  .container {
    width: 500px;
  }
}
@media (max-width: 540px) {
  /* For a screen < 540px, this CSS will be read */
  .container {
    width: 300px;
  }
}

.card-white {
    background-color: white;
    padding: 40px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin: 20px 0px;
    text-align: center;
}

.img-circle {
    border-radius: 50%;
}

.btn-darkblue {
    background-color: #27548A;
    color: white;
    padding: 15px 20px;
    border-radius: 4px;
}

.btn-blue:hover {
    background-color: #183B4E;
    color: white;
}

.list-inline {
    list-style: none;
    padding-left: 0px;
}

.list-inline li {
    display: inline;
    padding: 10px;
}

.list-inline i {
    font-size: 50px;
}

.list-inline i:hover {
    color: #183B4E;
}

.fa-brands {
    color: #27548A;
}


#introduction p {
    margin-bottom: 40px;
}
