/* TAGS */
body {
  /* background-image: url('../images/duck_tile_tinted.png');
  background-repeat: repeat;
  background-size: auto; */
  background-color: #ffffff;
  color: #000000;
}

nav {
  margin: auto;
  width: 60%;
  margin-top: 150px;
  max-height: 900px;
}

nav li {
  display: inline-block;
}

nav a {
  color: #000000;
}

nav a:hover {
  color: #ff0546;
}

nav ul {
  padding: 0;
  margin: 0 0 1rem 1rem;
  list-style: none;
}

/* IDS */
#container {
  margin: 0 auto;
  max-width: 1100px;
}

#about-box {
  margin: auto;
  width: 60%;
  max-height: 900px;
  border: 0.25rem solid #000000;
  box-sizing: border-box;
  padding: 10px;
  background-color: #ffffff;
}

#about-text {
  padding-left: 1rem;
  width: 70%;
}

#title {
  color: #000000;
  text-shadow: -2px 3px #c7c7c7;
}

#dumbo-container {
  background-color: transparent;
  width: 100%;
  margin: auto;
  z-index: 2;
  position: absolute;
  transform: translate(700px, 150px);
}

#dumbo {
  max-height: 450px;
  height: 50%;
}

@media (max-width: 1100px) {
  nav {
    width: 65%;
  }

  #dumbo-container {
    transform: translate(65%, 190px);
    height: 80%;
  }

  #about-box {
    width: 65%;
  }
}

@media (max-width: 500px) {
  nav {
    width: 75%;
  }

  #about-box {
    width: 75%;
  }

  #dumbo-container {
    transform: translate(130%, 90%);
    height: 50%;
    width: 50%;
  }
}

/* CLASSES */
.box {
  border: 1rem solid #000000;
  border-radius: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #17001d;
}

.list {
  list-style: none;
  padding-left: 0;
}

.list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 8px;
  line-height: 0.8rem;
}

.knife-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  /* Set to your image size */
  height: 24px;
  /* Set to your image size */
  background-image: url('../images/knife.png');
  /* Change to your image path */
  background-size: contain;
  background-repeat: no-repeat;
}

.heart-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  /* Set to your image size */
  height: 24px;
  /* Set to your image size */
  background-image: url('../images/heart.png');
  /* Change to your image path */
  background-size: contain;
  background-repeat: no-repeat;
}