*{
  margin: 0;
  padding:0;
}

header{
  background-color: #F76060;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  display:flex;
}

img.logo{
  color: white;
  text-shadow: 2px 2px black;
  line-height: 130px;
  display: inline-block;
  margin-left: 2%
}

img.logo{
  font-size: 38px;
}

img{
  max-width: 120px;
  max-height: 120px;
  margin-top: 5px;
}

nav{
  display: inline-block;
  width: calc(100% - 170px);
  margin-top: 65px;
}

ul.navigation{
  display: flex;
  justify-content: space-evenly;
  height: 18px;
}

ul.navigation li{
  list-style: none;
  font-family: sans-serif;
  font-weight: bold;
}

ul.navigation li p{
  color: gold;
  font-size: 16px;
  padding-top: 1px;
}


footer{
    background: #565656;
    bottom: 0;
    width: 100%;
    height: 300px;
    text-align: center;
    color: white;
    position: relative;
}


main{
  min-height: 60vh;
  background-color: #d3d3d3;
  display: flex;
  flex-direction: row;
}

#LeftSection{
  flex-grow: 1;
  margin: 27px;
  background-color: white;
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  margin-bottom: 50px;
  max-height: 450px;
}

.hidden{
  position: absolute;
  top: -9999px;
  left: -9999px;
}

#RightSection{
  width: 350px;
  margin: 27px;
  background-color: white;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px ;
  max-height: 450px;
  min-width: 350px;
}

.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;
  padding-left: 5px;
}

p{
  font-size: 12px;
  font-family: sans-serif;
  line-height: 18px;
}


  @media all and (max-height: 900px){

    main{
      min-height: 75vh;
    }
  }

  @media all and (min-height: 400px) and (max-height: 550px){

  main{
    min-height: 130vh;
  }

  }

  @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;

    }

    ul.navigation li p{
      font-size: 24px;
      padding-top: 2px;
    }

    main{
      min-height: 80vh;
    }

    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;
    }


    ul.navigation{
      font-size: 26px;
      line-height: 26px;

    }

    main{
      min-height: 80vh;
    }

    nav{
      width: 80%;

    }

  }
