main {
  width: 100%;
}
body {
  background: linear-gradient(180deg, black, blue) fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.goodButton {
  background-color: blue;
  color: white;
  padding: 10px;
  border-radius: 25px;
  border: solid white 2px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.5);
}
.goodButton:hover {
  transform: scale(1.1);
}
.badButton {
  background-color: gray;
  color: black;
  padding: 10px;
  border-radius: 25px;
}
#logoutButton,
#displayTokenButton {
  display: none;
}
.top-content {
    height: 250px
}
.content-container {
  margin-top: 100px;
}
.list-container {
  width: 100%;
  display: flex;
}
.list-parent {
  padding-bottom: 20px;
}
.list-parent li {
  text-align: left;
  padding: 5px 0px;
  list-style: none;
}
.list-title {
  margin-bottom: 10px;
  border-bottom: solid 2px white;
}
.user-info {
  display: flex;
  justify-content: center;
  align-items: center;
}
#userWallet,
#userEtherBalance {
  padding-left: 10px;
}
#list-container-header {
  display: none;
}
