@font-face {
  font-family: "Interstate Condensed Bold";
  src: url("interstateCondensedBold/interstateCondensedBold.otf");
}

/*html {
  height: 100%;
}*/

/*html {
  position: relative;
  height: 100%;
}*/

body {
  background-image: url(jean-ralphio2.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: left bottom;
  font-family: "Interstate Condensed Bold";
  font-size: 20px;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;   /*LOCKING THE VIEWPORT HEIGHT MEANS YOU CAN'T SCROLL, WHICH MEANS THAT LONGER QUOTES ARE CUT OFF*/
  /*THIS HEIGHT AND WIDTH SOLUTION ALSO MAKES ZOOMING ON FIREFOX MOBILE LOOK WEIRD*/
  overflow-x: hidden;
  overflow-y: scroll;  /*PUTTING SCROLL FOR THIS PROPERTY ALLOWS ALL QUOTES TO BE READABLE, EVEN THOSE BELOW 100VH */
}

/*body:before {
  content: "";
  display: block;
  position: fixed;
  left: -200px;
  bottom: 0;
  width: 50%;
  height: 60%;
  background: url(jean-ralphio.png) no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}*/

.container {
  margin: 0 20%;
  padding-top: 2%;
}

.occupations:link,
.occupations:visited {
  color: #000;
  transition: color 0.3s;
}

.occupations:hover,
.occupations:active {
  color: green;
}

.jsLink:link,
.jsLink:visited {
  color: #000;
}

.jsLink:hover,
.jsLink:active {
  color: #e1aded;
}

h1 {
  text-transform: uppercase;
  margin-bottom: 0;
}

h2,
h3,
h6 {
  margin: 0.25rem 0;
  padding: 0;
}

h6 {
  margin-bottom: 3rem;
}

.btn {
  height: 2rem;
  cursor: pointer;
  border: 2px solid #000;
  padding: 0.5rem;
  background-color: #e1aded;
  transition: background-color 0.3s, border 0.3s;
}

.btn:hover {
  background-color: #dc9fea;
  border: 2px solid #444;
}

.btnImg {
  height: 2rem;
  width: auto;
  vertical-align: middle;
}

#randomQuote {
  margin-top: 2.5rem;
  padding-bottom: 2%;
}

q {
  font-family: 'Gloria Hallelujah', cursive;
}

q:before {
  content: no-open-quote;
}

q:after {
  content: no-close-quote;
}

/*.test {
  background-image: url(jean-ralphio.png);
  background-repeat: no-repeat;
  background-position: -170px 100%;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  height: 55%;
  border: 2px solid black;
}*/

/**************MEDIA QUERIES********************/

@media only screen and (max-width: 1400px){
  .container {
    margin: 0 15% 0 23%;
    padding-top: 2%;
  }
}

@media only screen and (max-width: 1200px) {
  .container {
    margin: 0 10% 0 30%;
    padding-top: 2%;
  }
}

@media only screen and (max-width: 1000px) {
  .container {
    margin: 0 20%;
    padding-top: 2%;
  }
  body {
    /*background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%), url(jean-ralphio.png);*/
    background-image: url(jean-ralphio50percentOpacity2.png);
  }
}

@media only screen and (max-width: 630px) {
  .container {
    margin: 0 10%;
    padding-top: 2%;
  }
  body {
    /*background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%), url(jean-ralphio.png);*/
    background-image: url(jean-ralphio50percentOpacity2.png);
  }
}

@media only screen and (max-width: 450px) {
  body {
    font-size: 17px;
    background-size: 100%; /*MADE IT RESPONSIVE!!*/
  }
  .btn {
    font-size: 15px;
  }
  .btnImg {
    height: 1.5rem;
    width: auto;
  }
}

@media only screen and (max-width: 355px) {
  body {
    font-size: 15px;
  }
  .btn {
    font-size: 13px;
  }
}

/*@media only screen and (max-height: 650px) {
  body {
    background-size: 150%;
    background-position: -150px 325px;
  }
}*/
