body {
  background-color: antiquewhite;
}

/* =========================================== [ Screen from 1 pixel onwards ] =========================================== */
@media screen and (min-width: 1px) {
  .testing-content-title-container h3.testing-content-title,
  a.top-button,
  p.testing-path-location {
    display: none;
  }

  .home-button-container a.home-button {
    display: none;
  }

  .testing-title-container h1.testing-title {
    display: none;
  }

  .js-code-output-container p.js-code-output {
    display: none;
  }

  .display-resolution-warning-container img.low-resolution-stop-sign {
    display: inline-block;
    width: 97%;
    height: 97%;
  }
}

/* ========================================== [ Screen from 250 pixels onwards ] ========================================== */
@media screen and (min-width: 250px) {
  .display-resolution-warning-container img.low-resolution-stop-sign {
    display: none;
  }

  .testing-title-container h1.testing-title {
    display: block;
    text-align: center;
    font-size: calc(13px + 1vw);
    margin-bottom: 5px;
    margin-top: 0px;
  }

  .home-button-container {
    text-align: center;
  }

  .home-button-container a.home-button {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    margin-top: 0.5px;
    margin-bottom: 4px;
    padding-left: calc(2px + 0.3vw);
    padding-right: calc(2px + 0.3vw);
    font-size: calc(12px + 0.7vw);
    padding-top: 4px;
    padding-bottom: 4px;
    border: solid 2px black;
    background-color: yellow;
    color: black;
    border-radius: 13px 13px 13px 13px;
    font-weight: bold;
    box-shadow: 7px 5px 14px -5px rgba(0, 0, 0, 0.67);
  }

  .home-button-container a.home-button:hover {
    background-color: black;
    color: yellow;
    border: dotted 2px yellow;
  }

  .testing-content-title-container {
    display: inline-block;
    position: sticky;
    top: 0.2%;
    text-align: center;
    color: gold;
    background-color: black;
    box-shadow: 0px 10px 13px -2px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    border: groove 2px yellow;
    padding-top: 2px;
    padding-bottom: 2px;
    width: 100%;
    margin-top: 6px;
    margin-bottom: 0px;
  }

  .testing-content-title-container a.top-button {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    padding-left: calc(1px + 0.2vw);
    padding-right: calc(1px + 0.2vw);
    font-size: calc(12px + 0.7vw);
    padding-top: 2.5px;
    padding-bottom: 2.5px;
    border: solid 2px black;
    background-color: yellow;
    color: black;
    border-radius: 13px 13px 13px 13px;
    font-weight: bold;
    box-shadow: 5px 3px 21px -5px rgba(0, 255, 157, 0.67);
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .testing-content-title-container a.top-button:hover {
    border: solid 2px yellow;
  }

  .testing-content-title-container h3.testing-content-title {
    display: block;
    margin-top: 1px;
    margin-bottom: 1px;
    font-size: calc(10px + 1vw);
  }

  .testing-content-title-container p.testing-path-location {
    display: inline-block;
    color: whitesmoke;
    font-size: calc(10px + 1vw);
    font-weight: bolder;
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .js-code-output-container p.js-code-output {
    display: block;
    font-size: calc(2px + 1vw);
  }
}

/* ########################################################################################################### */
/* #######                        You write the css code for the testing here!                         ####### */
/* ########################################################################################################### */
.code-snapshot {
  width: 450px;
  height: 500px;
  margin-top: 25px;
  border-radius: 10px;
  box-shadow: 7px 7px 23px 2px rgba(0, 0, 0, 0.34);
  margin-right: 15px;
}
