
@font-face {
    font-family: 'bold';
    src: url('font/Montserrat-SemiBold.ttf'); /* IE9 Compat Modes */
    src: url('font/Montserrat-SemiBold.ttf?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('font/Montserrat-SemiBold.ttf') format('woff2'), /* Super Modern Browsers */
         url('font/Montserrat-SemiBold.ttf') format('woff'), /* Pretty Modern Browsers */
         url('font/Montserrat-SemiBold.ttf')  format('truetype'), /* Safari, Android, iOS */
  }


/*BODY CONFIG*/
body {
  /* Location of the image */
  background-image: url(img/background.png);
  
  /* 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;
  
  color: white;
  /* Pick a solid background color that will be displayed while the background image is loading */
  background-color:#464646;
  
  /* SHORTHAND CSS NOTATION
   * background: url(background-photo.jpg) center center cover no-repeat fixed;
   */

   
}




/*-------*/

.row{
	text-align: center;
}
#text{
  margin-top: 30%;
  margin-bottom: 20%;
}
.title{
	font-family: 'bold';
	color: white;
	font-size: 2rem;
  margin-top: 2%;
  
}
.sub{
  font-size: 1rem;
  margin-top: 5%;
}
footer{ margin-top: 0;}

