
/** ADD YOUR AWESOME CODES HERE **/
body {
    color: #1f1f1f;
    font-size: 19px;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.80857;
}

div.section-title {
    font-size: 19px;
}

h3 {
    font-size: 19px;
    font-weight: bold;
}


div.mb-0 {
   width:100%;
   font-size: 20px;
}

div.card {
   width:100%;
}

div.card-header{
   width:100%;
}


div.card-body {
   width:100%;	
}


.loader {
  border: 16px solid #ccc; /* Light grey */
  border-top: 16px solid #aaa; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}