.wrap {
/*width: 1200px;*/
width:  100%;
margin: 10px auto;
}
.header {
height: 100%;
background: rgb(224, 142, 62);
text-align: center;
vertical-align: middle;
}
.content {
width: 600px;
height: 700px;
background: rgb(255, 252, 200);
float: left;
}

footer {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: rgb(192,192,192);
  clear: both;
  text-align: center;
  vertical-align: middle;
}



body, html {
  height: 100%;
  margin: 10pt;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}


.footer{

  float: left;
  width: 20%;
  padding: 10px;
}

/*for facebook */

.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}





/*=========================================================================================================*/
/*https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_two_columns_responsive*/



/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 20%;
  padding: 00px;
  //*height: 100px; /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}


/*=====================================================*/
/*https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_image_text*/
.container {
  position: relative;
  text-align: left;
  color: white;
}

.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.top-left {
  position: absolute;
  top: 0px;
  left: 0px;
}

.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

.centered {
  position: absolute;
  text-align: center;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: calc(1.2vw + 0.1vh + 0.3vmin);
}






/*=========================================================================================================*/
/* https://www.w3schools.com/html/tryit.asp?filename=tryhtml_responsive */

@media only screen and (max-width:800px) {
  /* For tablets: */
  .content {
    width:100%; /*originally it is 80%*/
  }
  .sidebar {
    width:100%;
  }
}


@media only screen and (max-width:500px) {
  /* For mobile phones: */
  .content, .sidebar{
    width:100%;
  }
}





