.layout-wallet {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-column-gap: 5%;
    margin: 0px 0 24px 0;
  }
  
  .wallet {
    height: 200px;
    background-color: var(--light-light-gray);
    border-radius: 12px;
    box-shadow: 2px 4px 12px var(--main-color-one);
    padding: 16px;
  }
  
  .wallet-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
  
  .wallet-info img {
    width: 80px;
    max-height: 80px;
    margin-top: -16px;
  }
  
  .wallet-text {
    font-size: 3em;
    font-weight: 700;
    text-shadow: 2px 2px 10px var(--light-gray);
  }
  
  .wallet-currency {
    padding-top: 4px;
    border: 4px solid;
    border-radius: 16px;
    border-color: var(--main-color-two);
    margin-left: 32px;
    margin-right: 32px;
    padding: 6px 0 0 20px;
    font-size: 1em;
  }
  
  .wallet-qacoin,
  .wallet-usd,
  .wallet-eur {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* justify-items: center; */
  }
  
  .symbol {
    font-weight: 900;
    font-size: 1.6em;
  }
  
  .amount {
    text-decoration: underline;
  }


.title {
  height: 100px;
  margin-bottom: 12px;
}

.title img {
  height: 100px;
}

.rates {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.rates-text {
  font-size: 28px;
  font-weight: 400;
  margin-top: 1.5em;
  text-decoration: underline;
}

.rates-symbol {
  font-weight: 400;
  font-size: 5em;
  margin-right: 0.1em;
}

.qacoin_to_usd,
.qacoin_to_eur {
  font-weight: 900;
  font-size: 3em;
  color: var(--main-color-two);
  margin-right: 0.2em;
}

@media (max-width: 1024px) {
  .title img {
    height: 60px;
  }
  .title {
    height: 60px;
    margin-bottom: 6px;
  }
  .wallet-currency {
    font-size: 14px;
  }
  .title img:last-child {
    display: none;
  }
  .rates-text {
    font-size: 20px;
  }
  .rates {
    display: grid;
    grid-template-columns: 2fr;
  }
  .rates-symbol, .qacoin_to_usd, .qacoin_to_eur {
    font-size: 3em;
  }
}


@media (min-width: 1024px) {
  .title img {
    height: 80px;
  }
  .title {
    height: 80px;
    margin-bottom: 6px;
  }
}
  