/* General Styleing */
body {
  background-image: url(../../assets/images/dark-denim.jpg);
  background-repeat: repeat;
  color: white;
  font-family: "Eagle Lake", cursive;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  font-weight: bolder;
  background: rgb(47, 39, 18);
  background: -moz-linear-gradient(
    left,
    rgb(47, 39, 18) 0%,
    rgb(86, 153, 170) 50%,
    rgb(144, 81, 38) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgb(47, 39, 18) 0%,
    rgb(86, 153, 170) 50%,
    rgb(144, 81, 38) 100%
  );
  background: linear-gradient(
    to right,
    rgb(47, 39, 18) 0%,
    rgb(86, 153, 170) 50%,
    rgb(144, 81, 38) 100%
  );
  border-bottom: #140905 solid 2px;
}

nav {
  margin: 20px;
}

nav button {
  background-color: black;
  font-size: 20px;
}

nav button a {
  color: white;
}

nav button:hover {
  background-color: white;
}

nav button:hover a {
  color: black;
}

nav button:active {
  background-color: #f27c38;
}

.nav-ul {
  list-style-type: none;
}

h1 {
  color: #f27c38;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  text-shadow: 4px 2px 2px #140905;
  padding: 10px 20px;
}

.nav-ul.li {
  display: inline;
}

.image-logo {
  display: flex;
  justify-content: baseline;
}

.headlogo {
  height: 175px;
  width: auto;
}

.btn:hover {
  background-color: white;
  color: black;
}

/* INDEX HTML  */
.carousel-inner img {
  margin: auto;
}

/* Wishlist HTML */
/* Color of form input boxes */
textarea {
  animation-name: none;
  visibility: visible;
}

.form-control {
  color: white;
  font-family: monospace;
  text-rendering: initial;
}

.form-control:focus {
  box-shadow: none;
  color: white;
  background-color: transparent;
}

.sub-page {
  display: flex;
  justify-content: center;
  color: #f27c38;
  font-weight: bolder;
  font-size: 45px;
}

.wish-main {
  padding-top: 10px;
  padding-bottom: 10px;
}

.input-background {
  background-color: rgba(0, 0, 0, 0.336);
}

.container-cards {
  padding: auto;
  margin-top: 10px;
}

.form-values {
  display: flex;
  justify-content: space-around;
  font-size: 150%;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.336);
  border: white 2px solid;
  border-radius: 15px;
  padding: 5px;
}

.gifClass {
  width: 300px;
  height: auto;
}

.form-btns {
  display: flex;
  justify-content: space-around;
}

.modal-content {
  color: black;
  font-size: 175%;
}

/* Create.html styles */
.search-input {
  display: flex;
  position: sticky;
  top: 15px;
  background-color: rgba(0, 0, 0, 0.336);
}

.search {
  padding: 15px;
}

.card-result-img {
  width: 150px;
  height: auto;
  border-radius: 10px;
  z-index: 5;
}

.card-result-img:hover {
  position: relative;
  z-index: 5;
  transform: scale(2.5);
  cursor: pointer;
}

.recently-added-cont {
  position: sticky;
  top: 10px;
}

.card-li {
  background-color: black;
  color: white;
  border-color: white;
}

.card-li:hover {
  cursor: pointer;
  background-color: white;
  color: black;
}

.recent-btns {
  border: white solid 1px;
  margin-bottom: 5px;
}
.show-img {
  display: none;
}

.clear-list,
.name-list,
.save-list {
  padding: 5px 7px;
}

footer {
  margin: 15px;
  padding: 15px;
  display: flex;
  justify-content: center;
  margin-top: auto;
}

/* Media Screens */
@media (max-width: 500px) {
  .card-li {
    font-size: 50% !important;
  }
}

@media (max-width: 775px) {
  header {
    flex-direction: column;
  }
  .random-tweet-cont {
    flex-direction: column;
  }
  .show-img {
    display: block;
  }
  .hide-word {
    display: none;
  }
  .clear-list,
  .name-list,
  .save-list {
    transform: scale(0.75);
  }
  .search {
    padding: 5px 7px;
  }
}

@media (max-width: 1000px) {
  .form-values {
    flex-direction: column;
  }
}

@media (max-width: 1200px) {
  .card-li {
    font-size: 75%;
    padding: 5px 7px;
  }
  .search-placeholder {
    display: none;
  }
}
