@import url("https://fonts.googleapis.com/css2?family=Pixelify+Sans&display=swap");
* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  width: 100vw;
  height: 100vh;
}

a {
  cursor: pointer;
  color: #1ab5f2;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

.hidden {
  color: #ffffff;
}
.hidden .unique-symbol {
  display: none;
}
@media screen and (min-width: 1000px) {
  .hidden .unique-symbol {
    display: inline-block;
  }
}

h1 {
  color: rgb(39, 78, 157);
  font-family: "Pixelify Sans", sans-serif;
}

h2 {
  margin: 0 0 10px 0;
}

main {
  padding: 0 50px;
}

button {
  background-color: #009688;
  color: #fff;
  padding: 10px 20px;
  border: 2px solid #004d40;
  border-radius: 5px;
  font-family: "Courier New", monospace;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s, color 0.3s;
}
button:hover {
  background-color: #004d40;
  color: #fff;
}
button.small-btn {
  align-self: self-start;
  width: 30vw;
  background-color: #005f96;
  border: 2px solid #00254d;
}
button.small-btn:hover {
  background-color: #00254d;
  color: #fff;
}

.github-link {
  position: absolute;
  margin: 0;
  right: 15px;
}

/**********************************
* * NAVBAR * *
**********************************/
nav {
  font-family: "Pixelify Sans", sans-serif;
  display: flex;
  align-items: center;
  position: relative;
  background-color: rgb(25, 40, 69);
  border-bottom: 7px solid #97b5ce;
  padding: 20px 30px;
  color: white;
  font-size: 20px;
}
nav a {
  color: white;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 800px) {
  nav {
    font-size: 21px;
    padding: 18px 30px;
  }
}

/**********************************
* * HOME PAGE * *
**********************************/
/* MAIN TV VIDEO BACKGROUND */
.video-container {
  position: relative;
  width: 325px;
  height: 270px;
  top: 50px;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.video-container .tv-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}
.video-container .video-background {
  width: 80%;
  height: 73%;
  object-fit: cover;
  position: absolute;
  top: 5%;
  left: 5%;
}
@media screen and (min-width: 550px) {
  .video-container .video-background {
    width: 90%;
    height: 85%;
  }
}
.video-container .fuzzy-overlay {
  position: absolute;
  width: 77%;
  height: 70%;
  inset: 7% 5.3%;
  background-image: url("../images/noise.png");
  opacity: 45%;
  animation: shift 0.2s linear infinite both;
}
@media screen and (min-width: 550px) {
  .video-container .fuzzy-overlay {
    width: 85%;
    height: 100%;
    inset: 9% 5.3%;
  }
}
@media screen and (min-width: 1000px) {
  .video-container .fuzzy-overlay {
    width: 85%;
    height: 77%;
  }
}
.video-container .volume-btn {
  cursor: pointer;
  position: absolute;
  border: 3.5px solid #a70000;
  z-index: 5;
  width: 39px;
  height: 38px;
  bottom: 126px;
  right: 10px;
  border-radius: 50%;
  animation: flash-active 2s infinite; /* Default animation for active */
}
.video-container .volume-btn.active {
  border-color: #00a796;
}
.video-container .volume-btn.video-playing {
  animation: none;
}
.video-container .volume-btn.disable {
  border-color: red;
  animation: flash-disabled 2s infinite;
}
@media screen and (min-width: 550px) {
  .video-container .volume-btn {
    width: 52px;
    height: 52px;
    bottom: 103px;
    right: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .video-container .volume-btn {
    width: 42px;
    height: 42px;
    bottom: 104px;
    right: 13px;
  }
}
@media screen and (min-width: 550px) {
  .video-container {
    width: 500px;
    height: 320px;
  }
}
@media screen and (min-width: 1000px) {
  .video-container {
    position: absolute;
    width: 380px;
    height: 270px;
    right: 65px;
    bottom: 20px;
    left: auto;
    top: auto;
    transform: none;
  }
}

.header-container {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.header-container img {
  width: 30px;
}

.app-title {
  font-size: 2.05rem;
  margin-bottom: 15px;
}

.home-info-container {
  padding: 5px 20px;
  background-color: rgb(48, 131, 182);
  border-radius: 10px;
  color: rgb(255, 255, 255);
}
.home-info-container a {
  color: rgb(243, 153, 183);
  font-weight: 700;
}

.status-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 10px;
}
.status-container .status-info h2 {
  text-align: center;
  font-size: 1.3rem;
  border-radius: 5px;
  color: rgb(39, 78, 157);
  border: 2px solid rgb(39, 78, 157);
}
.status-container .status-info dl {
  margin-top: -5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.status-container .status-info dl dt {
  font-family: "Pixelify Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
}
.status-container .status-info dl dd {
  margin: 0;
}
@media screen and (min-width: 1000px) {
  .status-container {
    margin-top: 0;
    justify-content: flex-start;
  }
}

/**********************************
* * Categories & Items PAGES * *
**********************************/
.num-in-stock-alert,
.error-msg,
.empty-alert,
.alert {
  color: rgb(214, 10, 10);
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}
form .form-group {
  display: flex;
  flex-direction: column;
}
form .form-group#password-container {
  align-self: flex-start;
}
form input,
form select,
form textarea {
  margin-top: 5px;
  padding: 5px;
  width: 80vw;
}
form button {
  margin-top: 10px;
  width: 60vw;
}

.item-list-container {
  display: grid;
  grid-template: 1fr/repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}
.item-list-container .item-container {
  box-shadow: 0px 1px 5px rgb(153, 176, 206);
  background-color: #ffffff;
  border-radius: 10px;
  position: relative;
}
.item-list-container .item-container img#item-image {
  border-radius: 10px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: none;
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}
.item-list-container .item-container .item-name a {
  color: rgb(20, 25, 33);
}
.item-list-container .item-container .num-in-stock-alert {
  position: absolute;
  bottom: 0;
}
.item-list-container .item-container .info-container {
  background-color: #ffffff;
  padding: 20px 10px 30px;
  border-radius: 10px;
}
.item-list-container .item-container .item-category a {
  text-decoration: none;
  padding: 3px 15px;
  background-color: #1b2d46;
  color: #42c3f5;
  border-radius: 5px;
  transition: 0.3s ease-in-out all;
}
.item-list-container .item-container .item-category a:hover {
  background-color: #134fa4;
  color: #fff;
  transform: scale();
}
.item-list-container .item-container .item-price {
  margin: 5px;
  font-size: 1.1rem;
}

.category_detail_header,
.item_detail_header {
  margin-bottom: 20px;
}
.category_detail_header .header-container,
.item_detail_header .header-container {
  margin-top: 20px;
}
.category_detail_header .name,
.item_detail_header .name {
  margin: 0 0;
}
.category_detail_header .description,
.item_detail_header .description {
  margin-top: 10px;
}

.list {
  font-family: "Courier New", monospace;
  font-weight: 700;
  margin: 0;
  margin-bottom: 15px;
  padding-left: 20px;
}
.list li {
  display: flex;
  align-items: center;
  margin: 5px;
  font-size: 1.2rem;
  list-style: none;
  position: relative;
}
.list li::before {
  content: url("/images/radio-btn.svg");
  display: inline-block;
  margin-right: 15px;
}

.main-detail-container {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.main-detail-container .info-container {
  margin-right: 40px;
}

/**********************************
* * IMAGES * *
**********************************/
img#internet-gif {
  display: none;
  position: absolute;
  width: 400px;
  z-index: 2;
}
@media screen and (min-width: 1000px) {
  img#internet-gif {
    display: block;
  }
}

img#github-icon {
  width: 40px;
  filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(268deg) brightness(106%) contrast(101%);
  transition: all 0.5s ease-in-out;
}
img#github-icon:hover {
  transform: rotate(360deg);
}

img.type-cat {
  width: 150px;
  position: absolute;
  bottom: 20px;
  right: 50px;
}
img.type-cat#food-cats {
  width: 200px;
}
img.type-cat#magic-cat {
  height: 90px;
  width: 190px;
}
img.type-cat#punch-cats {
  width: 155px;
}

img#coffee-img {
  display: none;
  position: absolute;
  width: 150px;
  right: 450px;
  bottom: -10px;
  z-index: 10;
}
@media screen and (min-width: 1000px) {
  img#coffee-img {
    display: block;
  }
}

img#item-image\ small {
  width: 30vw;
}

.secret-img1 {
  position: absolute;
  bottom: 10px;
  right: 20px;
  cursor: pointer;
}
.secret-img1 .hidden {
  display: none;
}
.secret-img1:active .comment {
  display: none;
}
.secret-img1:active .hidden {
  color: black;
  display: inline;
}

/**********************************
* * PASSWORD * *
**********************************/
.password-container {
  position: relative;
}
.password-container img.eye-icon {
  cursor: pointer;
  position: absolute;
  top: 8px;
  right: 10px;
  width: 25px;
}

/**********************************
* * SHHH * *
**********************************/
.magic-container {
  position: relative;
  display: flex;
}
.magic-container img {
  position: static;
}

.hint-hidden {
  margin: 0;
  margin-top: -10px;
  margin-bottom: -25px;
}

/**********************************
* * KEYFRAME ANIMATION * *
**********************************/
@keyframes shift {
  0% {
    transform: translateX(3%) translateY(3%);
  }
  100% {
    transform: translateX(-3%) translateY(-3%);
  }
}
@keyframes flash-active {
  0%, 100% {
    box-shadow: 0px 0px 15px 5px #0ff;
  }
  50% {
    box-shadow: none;
  }
}
@keyframes flash-disabled {
  0%, 100% {
    box-shadow: 0px 0px 15px 5px red;
  }
  50% {
    box-shadow: none;
  }
}

/*# sourceMappingURL=style.css.map */
