:root {
    --primary-color: #000;
    --yellow: #f9c01c;
    --yellow-gradient-top: #2b2105;
    --dark-yellow: #483e1b;
    --grey: #1e1d1a;
    --black-dark: rgb(31, 31, 31);
    --grey-placeholder: rgb(156, 156, 156);
  }
  
  @font-face {
    font-family: Aristotelica-Pro-Display-Condensed-ExtraLight;
    src: url(../../fonts/Aristotelica_Pro_Text_Condensed_Extralight.otf);
  }
  
  @font-face {
    font-family: Aristotelica-Pro-Display-Condensed-Regular;
    src: url(../../fonts/Aristotelica_Pro_Text_Condensed_Regular.otf);
  }

  @font-face {
    font-family: Aristotelica-Pro-Display-Extra-Light;
    src: url(../../fonts/zetafonts-aristotelica-pro-display-extralight.otf);
  }
  
  @font-face {
    font-family: Aristotelica-Pro-Text-Extra-Light;
    src: url(../../fonts/zetafonts-aristotelica-pro-text-extralight.otf);
    font-weight: 400;
  }
  
  @font-face {
    font-family: Aristotelica-Demibold;
    src: url(../../fonts/zetafonts-aristotelicaicons-demibold.otf);
  }
  
  @font-face {
    font-family: Aristotelica-CDN-Extra-Light;
    src: url(../../fonts/zetafonts-aristotelicapro-cndtext-extralight.otf);
  }
  
  body,
  html {
    margin: 0;
    background-color: var(--primary-color);
    font-family: Aristotelica-Pro-Display-Condensed-ExtraLight;
    background-image: linear-gradient(
      to bottom right,
      var(--yellow-gradient-top),
      #000
    );
    background-attachment: fixed;
  }
  
  .navbar {
    background-color: initial;
    margin: 20px;
  }
  
  .navbar-logo {
    width: 150px;
  }
  
  .navbar-item {
    margin: 5px;
    font-size: 1.2rem;
  }

  .navbar-active-item {
    font-family: Aristotelica-Pro-Display-Condensed-Regular;
    font-size: 1.4rem;
  }

  #btn-connect {
    background-color: var(--dark-yellow);
    color: var(--yellow);
    border-color: var(--yellow);
    border-width: 2px;
  }
  
  .modal-card-head {
    background-color: var(--black-dark);
  }
  
  .modal-card-body {
    background-color: rgb(17, 17, 17);
  }
  .modal-card-title {
    color: white;
  }
  .wallet-provider-name {
    color: white;
    font-size: 2rem;
  }
  
  .wallet-provider-detail {
    color: var(--yellow);
  }
  
  .wallet-address {
    color: white;
    font-size: 1.5rem;
  }
  
  #metamask-container:hover {
    background-color: #1b1b1b !important;
  }
  
  #wallet-connect-container:hover {
    background-color: #1b1b1b !important;
  }
  
  .section-trade {
    margin-top: 0;
    margin-left: 5rem;
    margin-right: 5rem;
  }
  
  .title {
    font-size: 6rem;
    color: #fff;
  }
  
  .description {
    text-align: justify;
    font-size: 1.4rem;
    color: #fff;
  }
  
  #trade-btn {
    width: 150px;
  }
  
  
  .button {
    transition: 0.3s;
    background-size: 200% auto;
    font-family: Aristotelica-Pro-Display-Condensed-ExtraLight;
    font-weight: bold;
  }
  
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    display: none;
  }
  
  input {
    background-color: var(--black-dark) !important;
    color: white !important;
  }
  
  input::placeholder {
    color: var(--grey-placeholder) !important;
    font-family: Aristotelica-Pro-Display-Condensed-ExtraLight;
  }
  
  label {
    color: rgb(241, 241, 241);
  }
  
  footer {
    font-size: 1.2rem;
  }
  
  .footer {
    position: fixed;
    bottom: 0;
    padding: 0;
    padding-left: 3rem;
    width: 100%;
    background-color: var(--black-dark);
  }
  
  /* HELPERS */
  .yellow-text {
    color: var(--yellow);
  }
  