html{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    margin: 0;
    background-image: url(https://cftaft.com/wp-content/uploads/2016/03/white-background-wallpaper-2956247.jpg);
  }
  
  .cards{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1%;
  }
  
  .card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px; /* 5px rounded corners */
    background-color: orange;
    margin-left: 20px;
    width: 375px;
    height: 498px;
  }
  
  /* On mouse-over, add a deeper shadow */
  .card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }
  
  /* Add some padding inside the card container */
  .container {
    padding: 2px 16px;
    color: black;
  }
  
  .container h1{
    margin-top: -8%;
  }
  
  .container:hover {
    color: white;
  }
  
  .description{
    margin-top: 2%;
    text-align: center;
    padding: 1%;
  }
  
  .parceiros{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .box-logo{
    width: 230px;
    height: 150px;
    margin-left: 10px;
  }
  
  ul.navbar {
    width: 100%;
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    background-color: black;
    text-align: center;
  }
  
  ul.navbar li {
    justify-content: center;
    align-items: center;
    display: inline-flex;
    
  }
  
  ul.navbar li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  ul.navbar li a:hover:not(.active) {background-color: #111;}
  
  ul.navbar li a.active {
    background-color: orange;
    font-weight: bold;
    color: black;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  ul.navbar li.right {float: right;}
  
  @media screen and (max-width: 600px) {
    ul.navbar li.right, 
    ul.navbar li {float: none;}
  }
  
  footer{
    position:fixed;
    bottom:0;
    width:100%;
    overflow: hidden;
    background-color: black;
  }
  
  footer p{
    color: white;
    line-height: 2px;
    text-align: center;
  }
  
  footer p.pol{
    font-weight: bold;
  }
  
  footer ul{
    color: white;
    list-style-type: none;
    display: inline;
  }
  
  /* link que ainda não foi visitado */
  a:link {
    color: white;
    text-decoration: none;
  }
  
  /* link que foi visitado */
  a:visited {
     color: white;
     text-decoration: none;
  }
  
  /* mouse over */
  a:hover {
     color: orange;
  }
  
  /* link selecionado */
  a:active {
     color: rgb(255, 191, 95);
     text-decoration: none;
  }