.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.connect-button {
  display: flex;
  padding: 8px 16px;
  border-width: 2px;
  border-color: rgb(0, 0, 0);
  background-color: white;
  color: black;
  border-radius: 8px;
}

.modal-content {
  background-color: black;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  color: white;
  padding: 32px;
  border-radius: 8px;
  width: 600px;
  max-width: 90%;
}
