body{
  background-color: #444;
}
/* Default configuation for cell phone*/
.wrapper{
  background-color: #1b1b1b;
  width: 100vw;
  height: 650px;
  border: 10px double gold;
  border-radius: 10px;
  margin: 0 auto;
}
.header {
  background-color: #1b1b1b;
  height: 100px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.header h1 {
  font-family: arial;
  font-size: 30px;
  color: #fff;
  padding-bottom: 4px;
}
.header p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  color: #f8b700;
}
.interface {
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #1b1b1b;
}
.interface a {
  display: flex;
  flex-wrap: nowrap;
}
.interface img {
  width: 120px;
  height: 120px;
}
.img-avatar {
  width: 160px !important;
  height: 160px !important;
}
.mapSection {
  width: 50px !important;
  height: 50px !important;
}
.player-stats {
  width: 100px;
  padding: 0 10px 0 20px;
  background-color: #211510;
}
.map {
  width: 150px;
  height: 150px;
  border: 5px solid black;
  border-radius: 5px;
  background-color: green;
}
.map img {
  width: 50px;
  height: 50px;
}
.interface a:hover div {
  background-color: #3c1d3d;
}
.interface h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  color: #f8b700;
  padding: 12px 0 4px;
}
.interface p {
  font-family: arial;
  font-size: 12px;
  color: #d5c8af;
  line-height: 20px;
}
.splash {
  width: 80%;
  margin: 30px 0;
}
.splash img {
  width: 150px;
  margin: 10px 125px;
  border-radius: 20px;
}
.splash p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #f8b700;
  line-height: 24px;
  text-align: justify;
  text-indent: 30px;
}

.action-buttons {
  width: 100%;
  margin: 0 auto;
}
.actions {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}
.actions input{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}
.actions a {
  width: 25%;
  padding: 10px 0px;
  text-align: center;
  font-size: 14px;
  font-family: arial;
  color: #1b1b1b;
}
.actions a:nth-of-type(1) {
  background-color: #e64747;
}
.actions a:nth-of-type(2) {
  background-color: #475fe6;
}
.actions a:nth-of-type(3) {
  background-color: #6de647;
}
.actions a:nth-of-type(4) {
  background-color: #e6c147;
}
.actions a:hover {
  opacity: 0.9;
}
.arena {
  width: 100%;
  height: 180px;
  background-color: #1d373d;
  background-image: url("../images/arena.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100vh;
  visibility: hidden;
}
.arena-win {
  width: 180px;
  height: 180px;
  background-color: #1d373d;
  background-image: url("../images/celebration.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100vh;
}
.arena-text1, .arena-text2, .arena-text3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  color: #f8b700;
  text-align: center;
  padding-top: 25px;
  line-height: 26px;
}
.monster {
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #1b1b1b;
}
.monster a {
  display: flex;
  flex-wrap: nowrap;
}
.monster img {
  width: 120px;
  height: 120px;
}
.monster div {
  width: 220px;
  padding: 0 10px 0 20px;
  background-color: #211510;
}
.monster a:hover div {
  background-color: #3c1d3d;
}
.monster h3 {
  font-family: 'Acme', sans-serif;
  font-size: 22px;
  color: #f8b700;
  padding: 12px 0 4px;
}
.monster p {
  font-family: arial;
  font-size: 12px;
  color: #d5c8af;
  line-height: 20px;
}
/* configuration for everything else */
@media only screen and (min-width: 768px) {
  .wrapper{
    background-color: #1b1b1b;
    width: 650px;
    height:650px;
    border: 10px double gold;
    border-radius: 10px;
    margin: 0 auto;
  }
}