* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-border-radius:0; 
  border-radius:0;
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 1em
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  background-color: #dcdcdc;
  outline: 1px solid #868b90;
}

body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  margin: 0;
  padding: 0 1.5rem;
}

input[type="button"] {
  border: 0 none;
  background: none;
  line-height: 1;
  color: #000000;
  border-radius: 0;
  padding: 3px;
  font-size: 1.5rem;
}

.character, .assets {
  margin: 0 0 1.5rem;
  padding: 0 0 1rem;
}

.character__header,
.assets__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 1rem;
  border-bottom: 1px solid #3e3e3e;
}

.character__header *,
.assets__header * {
  display: inline;
  
}

.title {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-style: normal;
  margin: 3px 1rem 3px 0;
  font-size: 1rem;
}

.character #result {
  font-size: 1.5rem;
  font-weight: 700;
  border: 0 none;
  padding: 0;
  width: 100%;
  border-bottom: 2px solid transparent;
  transition: all 200ms ease-in-out;
}

.character #result:focus {
  outline: 0 none;
  border-bottom: 2px solid #3e3e3e;
}

.asset {
  box-shadow: 0px 7px 11px -5px rgba(0,0,0,.25);
  max-width: 400px;
  border: 2px solid #3e3e3e;
  margin: 0 auto 1rem;
}

.asset p {
  background: #3e3e3e;
  color: #ffffff;
  margin: 0 0 1rem;
  padding: .5rem 1rem;
}

.asset h3 {
  padding: 0 1rem;
  font-size: 1.25rem;
  margin: 0;
}

.asset ul {
  list-style-type: circle;
  padding: 0rem 1.5rem 0 2.25rem;
  margin: 1rem 0 2rem;
}

.asset ul li {
  margin-bottom: .5rem;
}

.asset ul li:nth-child(1) {
  list-style-type: disc;
}

@media screen and (min-width: 50em) {
  #assets__list-result {
    display: grid;
    grid-template-columns: repeat( 3, 1fr );
    grid-gap: 1rem;
  }
}

@media screen and (min-width: 90em) {
  .character__header,
  .assets__header {
    justify-content: start;
  }
}


