/* Responsive Full Background Image Using CSS
*/
body {
  /* Location of the image */
  background-image: url(images/background_bzzzz_v2.jpg);
  
  /* Image is centered vertically and horizontally at all times */
  background-position: center center;
  
  /* Image doesn't repeat */
  background-repeat: no-repeat;
  
  /* Makes the image fixed in the viewport so that it doesn't move when 
     the content height is greater than the image height */
  background-attachment: fixed;
  
  /* This is what makes the background image rescale based on its container's size */
  background-size:cover;
  
  /* Pick a solid background color that will be displayed while the background image is loading */
  background-color:#ffed00;
  
  /* SHORTHAND CSS NOTATION
   * background: url(background-photo.jpg) center center cover no-repeat fixed;
   */
}


/* Presentational style rules only
 * Not required
 */

html, body, .container {
  height: 96%;
}

/* Reset */
html, body, h1, p, a, div, section {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
}

/* Basic */
body { 
  /*font: 18px/23px "Cantarell", sans-serif;*/
  color: #ffffff;
}



.contact{
	font-size: 12px;
	text-align: right;
	line-height: 180%;
	margin-top: 100px;
	margin-right: 50px;
	margin-bottom: 20px;
	float: left;
	width: 40%;
} 

.contact img{
	width: 240px;
	margin-top: 15px;
}

.vespa{
	text-align: left;
	line-height: 180%;
	margin-bottom: 20px;
	float: left;
	width: 50%;
}

.centro{
 
}

.logobzzzz {
    width: 420px;
    margin-bottom: 50px;
}


/* Layout */

.navbar {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  height: 40px;
  z-index: 9999;
  position: fixed;
}

.inner {
    position: relative;
    margin: 0 auto;
    text-align: center;
  }

.navbar a {
  display: inline-block;
  border: 1px solid #fff;
  font-size: 14px;
  line-height: 24px;
  border-radius: 3px;
  padding: 2px 15px;
  text-decoration: none;
  margin-top: 5px;
}

.container {
  display: table;
  padding-top: 80px;
  width: 100%;
}

.content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}



/* Media Queries */


@media (min-width: 701px) and (max-width: 1200px) {
	
.contact{
	font-size: 12px;
	text-align: right;
	line-height: 180%;
	margin-top: 100px;
	margin-right: 50px;
	margin-bottom: 20px;
	float: left;
	width: 40%;
}

.contact img{
	width: 158px;
}

.vespa{
	text-align: left;
	line-height: 180%;
	margin-top: 40px;
	margin-bottom: 20px;
	float: left;
	width: 50%;
}

.vespa img{
	width: 320px;
}

.centro{
 
}	

.logobzzzz {
    width: 250px;
    margin-bottom: 0px;
}
	
}



@media (min-width: 415px) and (max-width: 700px) {


.contact{
	font-size: 12px;
	text-align: right;
	line-height: 180%;
	margin-top: 100px;
	margin-right: 50px;
	margin-bottom: 20px;
	float: left;
	width: 40%;
}

.contact img{
	width: 158px;
}


.vespa{
	text-align: left;
	line-height: 180%;
	margin-top: 80px;
	margin-bottom: 20px;
	float: left;
	width: 50%;
}

.vespa img{
	width: 250px;
}

.centro{
 
}	

.logobzzzz {
    width: 250px;
    margin-bottom: 0px;
}


}


@media only screen and (max-width: 414px) {
  
  .container {
    position: relative;
    display: block;
    float: left;
    vertical-align: baseline;
    margin: 0 auto;
    padding: 80px 0 0 0;
  }
  

html, body, .container {
    height: auto;
  }

.contact{
	font-size: 12px;
	text-align: center;
	line-height: 180%;
	margin-top: 60px;
	margin-left: 30%;
	margin-bottom: 20px;
}

.contact img{
	width: 158px;
}

.vespa {
	text-align: left;
	line-height: 180%;
	margin-left: 20%;
	margin-bottom: 20px;
	margin-top: 20px;
	float: left;
}
.vespa img{
	width: 250px;
	margin-top: 30px;
}
.logobzzzz {
    width: 260px;
    margin-bottom: 0px;
}

}
