body {
  background-color: antiquewhite;
}

div#warning-screen-size-sign img.stop-low-resolution-warning-sign {
  display: none;
}

div#title-of-testing h1.the-title-of-the-testing {
  text-align: center;
}

div#home-link a.the-home-link {
  text-decoration: none;
  text-align: center;
  margin-left: 0.5px;
  margin-right: 0.5px;
  margin-top: 0.5px;
  margin-bottom: 0.5px;
  padding-left: 4px;
  padding-right: 4px;
  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);
}

div#home-link a.the-home-link:hover {
  background-color: black;
  color: yellow;
  border: dotted 2px yellow;
}

div#home-link {
  text-align: center;
}

div#test-page-content h3.test-page-content-title {
  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: 5px;
  padding-bottom: 5px;
}

@media screen and (max-width: 221px) {
  div#title-page h1.the-title-page {
    display: none;
  }
  div#test-page-content h3.test-page-content-title {
    display: none;
  }

  div#home-link {
    display: none;
  }

  p#js-code-output {
    display: none;
  }

  div#title-of-testing h1.the-title-of-the-testing {
    display: none;
  }

  div#warning-screen-size-sign img.stop-low-resolution-warning-sign {
    display: inline-block;
    width: 97%;
    height: 97%;
  }
}

@media screen and (max-width: 82px) {
  div#warning-screen-size-sign img.stop-low-resolution-warning-sign {
    width: 96%;
    height: 96%;
  }
}

div#test-page-content p.test-location-path {
  color: whitesmoke;
}
/* ########################################################################################################### */
/* ########################### You write the style of the tutorial here ###################################### */
/* ########################################################################################################### */

/* the container of the shop list */
.shop-list-container {
  display: block;
  background-color: rgb(23, 49, 111);
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  border-radius: 10px;
  border: 2px solid yellow;
  box-shadow: 0px 10px 13px -7px #000000, -1px 2px 50px 9px rgba(0, 0, 0, 0.23);
}

/* the shop list */
.shop-list {
  list-style: none;
  padding: 0;
}

.shop-list li {
  display: flex;
  justify-content: space-between;
  border: 2px solid #77e44c;
  margin: 12px auto;
  padding: 4px 4px 4px 4px;
  max-width: 250px;
  border-radius: 10px;
  background-color: yellow;
  box-shadow: 0px 10px 13px -7px #150233, 3px 3px 10px 3px rgba(0, 0, 0, 0);
}

/* the text of the shop list items */
.shop-list span {
  font-weight: bolder;
  text-shadow: 1px 1px #8fc302;
}

/* the delete button of the shop list items */
.shop-list-delete {
  background-color: red;
  color: white;
  padding: 4px 10px;
  margin: 2px 0;
  border: 1px solid #26004f;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0px 10px 13px -7px #000000, -1px 2px 50px 9px rgba(0, 0, 0, 0.23);
}

.shop-list-delete:hover {
  background-color: #c30000;
}

/* the title of the shop list */
.shop-list-title {
  display: inline-block;
  margin: 20px auto;
  color: yellow;
  text-shadow: 2px 2px #060227;
}

/* the search input and submit button of the shop list */
.shop-list-search input[type="text"] {
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 2px solid #77e44c;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: yellow;
  box-shadow: 0px 10px 13px -7px #000000, -1px 2px 50px 9px rgba(0, 0, 0, 0.23);
}

.shop-list-search input[type="text"]::placeholder {
  color: black;
}

.shop-list-search input[type="submit"] {
  background-color: #016504;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: 2px solid #77e44c;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0px 10px 13px -7px #000000, -1px 2px 50px 9px rgba(0, 0, 0, 0.23);
}

.shop-list-search input[type="submit"]:hover {
  background-color: #0f4e12;
}

/* the add item input and submit button of the shop list */
.shop-list-add input[type="text"] {
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 2px solid #77e44c;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: yellow;

  box-shadow: 0px 10px 13px -7px #000000, -1px 2px 50px 9px rgba(0, 0, 0, 0.23);
}

.shop-list-add input[type="text"]::placeholder {
  color: black;
}

.shop-list-add input[type="submit"] {
  background-color: #016504;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: 2px solid #77e44c;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0px 10px 13px -7px #000000, -1px 2px 50px 9px rgba(0, 0, 0, 0.23);
}

.shop-list-add input[type="submit"]:hover {
  background-color: #0f4e12;
}

/* reset button of the shop list */
.shop-list-reset {
  margin: 15px auto;
  background-color: red;
  color: white;
  padding: 4px 10px;
  border: 1px solid #2fff00;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0px 10px 13px -7px #000000, -1px 2px 50px 9px rgba(0, 0, 0, 0.23);
}

/* hide class */
.hide {
  display: none !important;
}

/* ========================================================================================================================== */
