html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #fff; 
}

.profile-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.character-panel {
    position: absolute;
    left: 390px;
    top: 200px;
    width: 380px;
    height: 530px;

  background: url('http://45.152.243.233/inventory/images/char_info_bg.png') no-repeat center center;
  background-size: contain; 

  color: #fff;
  font-family: Arial, sans-serif;
  padding: 10px;
  box-sizing: border-box;
}

.character-panel h2 {
  margin-top: 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.inventory-panel div[id^="slot"] {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 5px;
  float: left;
}

.inventory-panel div[id^="slot"] img {
  width: 45px;
  height: 45px;
  object-fit: cover;
}