/* Your styles should be mobile-first and responsive */

/** 
  * If you are unclear on how to utilize a mobile-first, responsive technique to write your CSS, here is an example: 
  *
  * https://github.com/andreacardybailey/responsive_example/blob/master/styles/responsive-base.css 
  *
*/

@import url('https://fonts.googleapis.com/css?family=Acme&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lacquer&display=swap');
@import url('https://fonts.googleapis.com/css?family=Permanent+Marker&display=swap');

/* SMALL SCREEN DISPLAY */

@media screen and (min-width: 400px) {
  img:hover {
    transform: scale(1.05);
  }

  #answer,
  #btn-answers {
    display: inline-block;
    padding: 10px 0 10px 3px;
  }

  #correct-img {
    border-radius: 50%;
    height: 300px;
    width: 300px;
    box-shadow: 2px 2px 15px #66ff00;
  }

  .correct-response {
    margin-left: 40px;
    margin-right: 40px;
  }

  #rick-intro {
    text-align: center;
    margin-top: 3em;
    font-size: 1.5em;
    color: white;
    text-shadow: 8px 8px 10px #7fff00;
    font-family: 'Permanent Marker', cursive;
  }

  #intro-info {
    padding-top: 0.5em;
    text-align: center;
    color: #f5f5f5;
    font-family: 'Lacquer', sans-serif;
    text-shadow: 3px 3px black;
  }

  #intro-info h2 {
    margin-bottom: 1.2em;
    font-size: 1.6em;
  }

  #intro-info h3 {
    margin-bottom: 1.5em;
    font-size: 1.15em;
  }

  #next-question {
    max-width: 50%;
    margin: auto;
    display: flex;
    justify-content: center;
    background-color: blue;
    border: none;
    border-radius: 3px;
    color: white;
    font-size: 20px;
    width: 100%;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  #next-question:hover {
    transition-duration: 0.4s;
    background-color: black;
    box-shadow: 2px 2px 15px orange;
  }

  #js-start-btn {
    background-color: blue;
    border: none;
    border-radius: 3px;
    color: white;
    padding: 20px 45px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
  }

  #js-start-btn:hover {
    transition-duration: 0.4s;
    background-color: black;
    box-shadow: 2px 2px 15px orange;
  }

  .outer-box-question {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .inner-box-question {
    margin-top: 50px;
    background-color: rgba(0, 0, 0, 0.8);
    padding-right: 10px;
    border-radius: 5px;
  }

  .outer-box-answers {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .inner-box-answers {
    width: 70%;
    padding-right: 20px;
    padding-left: 20px;
    margin-top: 60px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 20px;
    border-radius: 5px;
  }

  .question-score-list,
  li {
    display: inline;
    font-size: 20px;
  }

  .question-score-list,
  ul {
    text-align: center;
    margin-right: 40px;
  }

  .question-list {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
    padding-left: 30px;
    padding-right: 30px;
  }

  .question-list-form {
    padding: 0 0 20px 20px;
    font-size: 20px;
  }

  .question-circle-img {
    border-radius: 50%;
    height: 220px;
    width: 220px;
    text-align: center;
    border-radius: solid black 2px;
    box-shadow: 2px 2px 15px orange;
    margin: 0 auto;
    margin-bottom: 10px;
    display: block;
  }

  #submit-button-list {
    display: flex;
    justify-content: center;
    background-color: blue;
    border: none;
    border-radius: 3px;
    color: white;
    font-size: 20px;
    width: 100%;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  #submit-button-list:hover {
    transition-duration: 0.4s;
    background-color: black;
    box-shadow: 2px 2px 15px orange;
  }

  #goBack:hover {
    transition-duration: 0.4s;
    background-color: black;
    box-shadow: 2px 2px 15px orange;
  }

  #you-are-correct {
    font-size: 30px;
    font-family: 'Acme', sans-serif;
  }

  .outer-score-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-family: 'Acme', sans-serif;
  }

  .inner-score-div {
    width: 90%;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 30px;
    text-align: center;
    margin-top: 100px;
    font-family: 'Acme', sans-serif;
  }

  #go-back-btn {
    display: flex;
    justify-content: center;
    max-width: 90%;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.8);
  }
  #goBack {
    margin-bottom: 20px;
    background-color: blue;
    border: none;
    border-radius: 3px;
    color: white;
    font-size: 20px;
    width: 50%;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  body {
    color: white;
    box-sizing: border-box;
    background-image: url('./Images/rick-background.jpg');
    background-size: cover no-repeat;
    background-position: 50% 40%;
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
  }
}

/* TABLET SCREENS SIZE OR GREATER */

@media screen and (min-width: 670px) {
  #rick-intro {
    font-size: 1.85em;
  }

  #intro-info {
    padding-top: 1em;
  }

  #intro-info h2 {
    font-size: 2em;
  }

  #intro-info h3 {
    font-size: 1.5em;
  }
}

/* DESKTOP SCREEN SIZE OR GREATER */

@media screen and (min-width: 1300px) {
  #rick-intro {
    font-size: 2em;
  }

  #intro-info {
    padding-top: 0.5em;
    padding-left: 7em;
    text-align: left;
  }
}
