@font-face
{
   font-family: header1;
   src: url('../fonts/Alatsi-Regular.ttf');

   font-family: header2;
   src: url('../fonts/Satisfy-Regular.ttf');

}

*
{
  margin: 0;
  padding: 0;
}

header
  {
    background-color:tomato;
    padding-bottom: 35px;
  }

  .logo1
  {
    display: inline-block;
    height: 40px;
  }

  .header1
  {
    display: inline-block;
    margin-left: 15px;
    margin-top: 15px;    
  }

  .header2
  {    
    display: inline-block;
    position: absolute;
    margin-left: 8px;
    margin-top: 15px;
  }


  .logo1-header
  {
    display: inline;
    color: white;
    font-family: header1;
  }

  .logo2-header
  {
    display: inline;
    color: white;
    font-family: header2;
    font-size: 25px;
  }

  

  .homeButton a button
  {
    color: white;
    background-color: teal;
    float: right;
    margin-right: 15px;
  }

  .list
  {
    margin: 5%;
    display: inline-block;
    text-align: left;
  }

  .list1
  {
    text-decoration: none;
    color: white;
    background-color: teal;
    padding: 5px;;
  }

  .list1:hover
  {
    background-color: tomato;
    transition: .8s;
  }

  .address
  {
    
    padding: 3%;
  }

  #address1
  {
    background-color: rgb(171, 228, 161);
    padding: 1%;
    width: 90%;
    margin: 5%;
    display: inline-block;
    border: 1px solid #000;
    border-radius: 15px;
  }


  @media only screen and (min-width: 768px)
  {
    
    #address1
    {
      margin: 1%;
      width: 30%;
    }


  }