@font-face {
  font-family: "Quicksand";
  src: url("../fonts/Quicksand-Regular.ttf");
  font-weight: 400;
}

/* For mobile phones: */
@media screen and (orientation:portrait) {
  .section {height: 50%;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: grid;
    filter: brightness(90%);
    transition: 0.5s filter;
    background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;}
  .section img {
    width: 70vw;
  }
  button {
    padding: 1.5vw;
    font-size:3.5em;
    font-weight: 250;
    font-family: "Quicksand";
    margin-left: 10vw;
    margin-right: 10vw;
    color: white;
    border: none;
    background-color: #D65050;
    box-shadow: 3px 5px 3px 0px #000000;
  
  }
  .info_container {font-weight: 500; font-size:1.25em;}
  .info_container h1 {font-weight: 500;}
  a {font-weight: 500; font-size:1.25em;}
}

@media screen and (orientation: landscape) {
  .section {height: 100%;
  width: 50%;
  float: left;
  justify-content: center;
  align-items: center;
  display: grid;
    filter: brightness(85%);
    transition: 0.5s filter;
    background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;}
  .section img {width: 35vw;}
  button {
    padding: 1.5vw;
    font-size: 1.5em;
    font-weight: 100;
    font-family: "Quicksand";
    color: white;
    border: none;
    background-color: #D65050;
    box-shadow: 3px 5px 3px 0px #000000;
  }
  .info_container {font-weight: 100;}
  .info_container h1 {font-weight: 100;}
  a {font-weight: 100;}
}

body {
  margin: 0;
  background-color: white;
	font-family: "Quicksand";
}

.section:hover {
  filter: brightness(100%);
}

.motorcycle {
  background-image: url("../images/motorcycle_background.jpg");
}

.bicycle {
  background-image: url('../images/bicycle_background.jpg');
}

button:hover {
  background-color: #b94747;
}

.info_container {
  justify-content: center;
  align-items: center;
	font-family: "Quicksand";
  text-align: center;
  color: #fff;
}

a {
  color: #fff;
	font-family: "Quicksand";
  font-size: 2em;
}