html {
  height: 100%;
}

body {
  font-family: 'Roboto Mono', sans-serif;
  color: #8f5536;

  /* makes footer stick to bottom */
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

h1 {
  color: white;
}

h1 span {
  background: #8f5536;
  padding: 5px;
}

img {
  padding-top: 20px;
  padding-bottom: 10px;
}

/*
.icon {
  display: block;
  margin: auto;
}

.icon:hover {
  color: red;
}

.dot {
  height: 25px;
  width: 25px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.dropbtn {
  color:red;
  padding: 16px;
  font-size: 16px;
  border: none;
}
*/

.content {
  padding-left: 50px;
}

.pls-center {
  text-align: center
}

.container__header {
  display: flex;
  //border: 2px solid red;
}

.container__content {
  width: 300px;

  /*debug*/
  //border: 2px solid red;
}

.container__rarity {
  width: 200px;
  padding-left: 100px;

  /*debug*/
  //border: 2px solid red;
}

.container__rarity--underline-legendary {
  border-bottom: 3px solid purple;
}

.container__rarity--underline-epic {
  border-bottom: 3px solid blue;
  width: 100px;
}

.container__rarity--underline-rare {
  border-bottom: 3px solid green;
  width: 100px;
}

.flex-container {
  display: flex;

  /*debug*/
  //border: 2px solid red;
}

.btn {
  font-family: 'Roboto Mono';
  border: 2px solid #8f5536;
  cursor: pointer;
  font-size: 20px;
  color: #8f5536;
  padding-left: 20px;
  padding-right: 20px;
}

.btn:hover {
  background-color: #8f5536;
  color: white;
}

.footer {
  background: #8f5536;
  color: white;

  display: flex;
  justify-content: space-evenly;
}

.footer__widget {
  display: flex;
}

.footer__widget--padding {
  padding-left: 7px;
}

.footer__widget--underline {
  text-decoration: underline;
}

/* custom radio button */
.radio--flex {
  display: flex;
  align-items: center;
}

input[type="radio"] {
  /* remove standard background appearance */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* create custom radiobutton appearance */
  display: inline-block;
  width: 25px;
  height: 25px;
  padding: 6px;
  /* background-color only for content */
  background-clip: content-box;
  border: 3px solid #8f5536;
  background-color: #e7e6e7;
  border-radius: 20%;

  margin: 5 5px;

}

/* appearance for checked radiobutton */
input[type="radio"]:checked {
  background-color: #8f5536;
}