<style>
*{
  padding: 0;
  margin: 0;
}
  body{
    margin: 0;
    padding: 0;
    font-family: 'Heebo', sans-serif;
  }
  .container{
    display: flex;
    flex-direction: column;
  }

.topmenu{
  background-color: #3f2601;
  height: 55px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  font-weight: 700;
  font-size: 13px;
  color: #f8e984;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
}

.topmenu a:link{
text-decoration: none;
padding: 10px 100px;
display: block;
}

.topmenu a:visited{
  color: #d2bd94;
}

.topmenu a:hover, a:focus{
  color: #9f5f03;
}


  aside{
    background-color:#ce843a;
    min-height: 200px;
    text-align: center;
    font-size: 30px;
    font-style:italic;
    color: #f5eff2;
  }

  article{
    background-color:#ffffff;
    height: 100vh;
  }
  .row{
      width: 100%;
      display: flex;
      flex-direction: column;
  }

  .col{
      flex:1;
      background-color: #fdf8f6;
      margin: 0.3em;
      padding: 20px 10;
      text-align: center;
  }

  .col img{
  border: 1px solid #6b6a6a;
  border-radius: 4px;
  padding: 35px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

.scheda{
  padding-left: 20px;
  text-align: center;
}


  /*    MEDIA QUERIES*/

  @media screen and (min-width:600px) {
      .row{
        flex-direction: col;
      }
  }
  @media screen and (min-width:768px) {
      .row{
      flex-direction: row;
      }
  }
  }
</style>
