html {
  color: #f7f7f7;
  background-color: rgb(32, 32, 32);

  font-family: 'Courier New', Courier, monospace;
}


.connect {
  display: flex;
  justify-content: flex-end;
}

.balance {
  width: max-content;
  text-align: center;
  /* vertical-align: middle; */

  /* padding-top: 2.5rem;
  padding-bottom: 2.5rem; */

  /* height: 5rem; */
  border: #f7f7f7;
}

.balance-display {

  border-width: 2px;
  border-style: solid;
  border-radius: 0.5rem;
  padding: 10px;

}


#fund-form {}

#buttons {
  background-color: rgb(32, 32, 32);
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.dashboard {
  max-width: 50rem;
  min-width: 40rem;
  margin-right: auto;
  margin-left: auto;

  margin-top: 50px;
  padding-right: 10px;
  padding-left: 10px;
}

.button {
  color: #f7f7f7;
  background-color: rgb(65, 65, 65);

  width: 8rem;
  height: 2.5rem;
  border: none;
  border-radius: 0.5rem;
}

input {
  border-radius: 0.2rem;
  padding: 3px;
}

.space-around {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.space-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-display {
  padding-top: 5rem;
  display: flex;
  justify-content: space-around;
}

.log-container {

  min-width: 320px;
  max-width: 500px;

  border-width: 2px;
  border-style: solid;
  border-radius: 0.5rem;
  padding: 10px;

  margin-bottom: 1rem;

}

.hidden {
  display: none;
}

/* How do I disable that when cliking in a link to have the text in purple? */
a:link {
  color: #f7f7f7;
}

a:visited {
  color: #f7f7f7;
}