* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: url(../img/bg.png);
  background-attachment: fixed;
  color: #474747;
}


#give {
  /* height: 100vh; */
  overflow: hidden;
}

header h1 {
  color: #000;
  font-weight: bold;

}

.nav-link {
  color: #010101;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 15px;
  margin: 5px 10px;
}

.nav-link:hover {
  color: #DA1333;
}

.active {
  color: #DA1333;
}

.btn-danger {
  background-color: #DA1333;
  border-color: #DA1333;
}

.welcome {
  margin: 50px 0px 50px;
}

.welcome h2 {
  font-size: 46px;
  line-height: 55.2px;
  color: #474747;
}

.welcome p {
  font-size: 18px;
  line-height: 27.3px;
}

.giveaway {
  font-size: 18px;
  line-height: 30px;
}

/* calculator */
/* Calculator Styling */
/* .calculator-section h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
} */

.calculation-box {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 20px;
  margin: 10px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-input {
  width: 150px;
  text-align: center;
  border: 1px solid #DA1333;
  border-radius: 4px;
  font-size: 1.2rem;
  margin-top: 5px;
}

.text-secondary {
  font-size: 1.4rem;
  /* margin-top: 20px; */
  color: #010101 !important;
  font-weight: bold;
}

.result {
  font-size: 1.4rem;
  font-weight: bold;
}

.text-danger {
  font-weight: 600;
}




/* wallet */
.wallet-qrcode {
  object-fit: fill;
}

.wallet-info h5 {
  margin-bottom: 10px;
}

.wallet-address {
  word-wrap: break-word;
  word-break: break-all;
}

.table-container {
  padding: 20px;
  border-radius: 8px;
  /* background-color: #f8f9fa; */
}

.coin-icon {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.table-responsive {
  margin-top: 30px;
  /* Space for the notification bar */
}

footer {
  background-color: #DA1333;
  border-radius: 20px;
}

/* mobile device*/
@media (max-width: 768px) {
  .calculation-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .calculation-box p.text-secondary {
    margin: 10px 0;
  }

  .mobile {
    display: none;
    text-align: center;
  }

  .mobile-ui {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .span {
    display: block;

  }

}