/* ESSE É O ESTILO DA PÁGINA, NÃO TEM NADA AQUI*/

* {
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color:#000000;
    padding: 20px;
    margin-left: 15%;
    margin-right: 15%;
    

  }
  
  /* Header/Blog Title */
  .header {
    padding: 30px;
    font-size: 40px;
    text-align: center;
    background: #fdffe04e;
    box-shadow: 0 0 20px -5px#a1925e7e;
  }
  
  /* Create two unequal columns that floats next to each other */
  /* Left column */
  .leftcolumn {
    float: left;
    width: 75%;

    
  }
  
  /* Right column */
  .rightcolumn {
    float: left;
    width: 25%;
    padding-left: 20px;

  }
  
  /* image */
  .fakeimg {
    width: 100%;
    padding: 20px;
  }

    
  /* Add a card effect for articles */
  .card {
  
    padding: 5px;
    margin-top: 20px;
    background: #fdffe04e;
    box-shadow: 0 0 20px -5px#4f410e;
    font-size: small;
    text-align: center;
    
  }
/* Crio uma div dentro da outra, uso class="border" na interna*/
  .borda{
    border-style: double;
    border-color: #a1a1a1;
    padding: 5px;
  
  }

  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Footer */
  .footer {
    padding: 5px;
    text-align: center;
    font-size:x-small;
    background: #fdffe04e;
    box-shadow: 0 0 20px -5px#a1925e7e;
    margin-top: 20px;
  }
  
  /* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn {
      width: 100%;
      padding: 0;
    }
  }

  a:link {color: #ffbc35; text-decoration: none;}
  a:visited {color: #ff793f; text-decoration: none;}
  a:hover {color: #ffbc35; text-decoration:underline;}
  a:active {color: #fc922e; text-decoration: none;}