* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  overscroll-behavior: none;
}


body {
  /*background: #f7f8fa;*/
  background: #00000090;
  font-family: Inter, sans-serif;
  color: #111;
  padding: 24px;
  
}

.container {
  max-width: 600px;
  margin: auto;
}

.logo {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: white; /*ON DARK*/
}

.card {
  background: white;
  border-radius: 32px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow:
    0 5px 20px rgba(0,0,0,0.05);
}

h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: none;
  background: #f2f4f7;
  border-radius: 20px;
  padding: 18px;
  font-size: 16px;
  outline: none;
}

textarea {
  min-height: 180px;
  resize: vertical;
}

input:focus,
textarea:focus {
  background: #eceff3;
}

button {
  /*width: 100%;*/
  border: none;
 /* border-radius: 24px;*/
 border-radius: 100px;
  padding: 18px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  background: #111;
  color: white;
  transition: 0.2s;
}

button:hover {
  opacity: .9;
}

.secondary-btn {
  background: #eef1f4;
  color: #111;
}

.center {
  text-align: center;
}

.big-number {
  font-size: 56px;
  font-weight: 700;
}

.link {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  color: white;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  color: white; /*ON DARK*/
}
.topbar h2{
    margin-bottom: 0;
}

.payout-item {
  background: #f2f4f7;
  border-radius: 20px;
  padding: 18px;
  margin-top: 10px; 
  word-break: break-word;
}

.profile-url {
  font-size: 15px;
  text-align: center;
  word-break: break-all;
}

.small-text {
  color: #777;
  font-size: 14px;
}

@media (max-width: 600px) {

  body {
    padding: 16px;
  }

  .card {
    padding: 22px;
  }

  .big-number {
    font-size: 44px;
  }
}