body {
  color: #fff;
}



h1 {
  font-size: 50px;
  margin: 20px;
}

h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

h3 {
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 10px;
}

h4 {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
}

.main-content {
  margin-top: 80px;
  text-align: center;
}

.box {
  background: #27292e;
  border-radius: 15px;
  margin: 10px 200px;
  padding: 10px;
  padding-left: 47px;
  padding-right: 47px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.input-div {
  text-align: left;
}

#editInput {
  background: #27292e;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  width: 50vw;
  color: #fff;
  text-align: center;
  margin: 10px;
  border-radius: 10px;
  text-decoration-style: solid;
  text-decoration-color: #fff;
  transition: 300ms;
  outline: 1px solid #495057;
}

::placeholder {
  color: #fff;
  font-size: 16px;
}

#saveButton {
  background: #27292e;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  width: 50vw;
  color: #fff;
  text-align: center;
  margin: 10px;
  border-radius: 10px;
  text-decoration-style: solid;
  text-decoration-color: #fff;
  transition: 300ms;
  outline: 1px solid #495057;
}

#saveButton:hover {
  transform: scale(0.95)
}

#xp-bar {
  width: 100%;
  height: 30px;
  background-color: #16181c;
  border-radius: 10px;
  position: relative;
  margin: 30px 0px;
}

#xp-progress {
  width: 0;
  height: 100%;
  background-color: #1cd96a;
  border-radius: 10px;
}

#user-info {
  margin: 10px 0px;
  text-align: left;
}

.username {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}

.editicon {
  color: #fff;
  background: #27292e;
  border: 0px;
  font-size: 16px;
  padding: 10px;
  border-radius: 10px;
  transition: all 300ms;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  outline: 1px solid #495057;
  margin: 0px;
}

.editicon:hover {
  transform: scale(0.9);
}

#editableHeading {
  margin: 10px;
}

@media screen and (max-width: 1000px) {
  .box {
    margin: 10px 100px;
  }
}

@media screen and (max-width: 800px) {
  .box {
    margin: 10px 50px;
  }
}