*{
  margin: 0;
  padding:0;
}

header{
  background-color: #F76060;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
}

h1.logo{
  color: white;
  text-shadow: 2px 2px black;
  line-height: 130px;
  display: inline-block;
  margin-left: 2%

}

img{
  max-width: 120px;
  max-height: 120px;
  margin-top: 5px;
}

nav{
  display: inline-block;
  width: calc(100% - 170px);
}

ul.navigation{
  display: flex;
  justify-content: space-evenly;
  height: 18px;
}

ul.navigation li{
  list-style: none;
  text-decoration: no;
  font-family: sans-serif;
  color: white;
  font-weight: bold;

}

ul.navigation li p{
  color: gold;
}


footer{
    background: #565656;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    text-align: center;
    color: white;
}

footer address{
  margin-top: 17px;
}

main{
  min-height: 85vh;
  background-color: #d3d3d3;
  display: flex;
  flex-direction: row;
}

#LeftSection{
  width: 70%;
  margin: 2%;
  background-color: white;
  display: flex;
  flex-direction: column;
  margin-top: 1%;
  margin-bottom: 100px;
  max-height: 450px;
}

#RightSection{
  width: 350px;
  margin: 2%;
  background-color: white;
  margin-top: 1%;
  display: flex;
  flex-direction: column;
  margin-bottom: 100px;
  max-height: 450px;
}

.TopBox {
  background-color: blue;
  margin: 12px;
  height: 15%;
  display: block;
}

.BottomBox {
  background-color: blue;
  margin: 12px;
  display: block;
  height: 85%;
}

article h4{
  font-size: 16px;
  font-family: sans-serif;
  line-height: 24px;
}

p{
  font-size: 12px;
  font-family: sans-serif;
  line-height: 18px;
}

@media all and (max-height: 900px){

  footer{
    position: relative;
  }

  footer address{
    margin-top: 0px;
  }

  main{
    min-height: 75vh;
  }
}

@media all and (min-height: 400px) and (max-height: 550px){

main{
  min-height: 130vh;
}

footer{
  position: relative;
}

footer address{
  margin-top: 0px;
}


}

@media all and (min-height: 1200px){

  #LeftSection{
    max-height: 800px;
  }
  #RightSection{
    max-height: 800px;
  }

  article h4{
    font-size: 20px;
    line-height: 30px;
  }

  h1.logo{
    font-size: 38px;
  }


  ul.navigation{
    font-size: 22px;
    line-height: 26px;

  }

  nav{
    width: 80%;

  }

}

@media all and (min-height: 1450px){

  #LeftSection{
    max-height: 1000px;
  }
  #RightSection{
    max-height: 1000px;
  }

  article h4{
    font-size: 26px;
    line-height: 34px;
  }

  h1.logo{
    font-size: 38px;
  }


  ul.navigation{
    font-size: 26px;
    line-height: 26px;

  }

  nav{
    width: 80%;

  }

}
