.tribute h2{
  padding-top: 3.5rem;
  font-size: 2.4rem;
  color: var(--color-red);
  font-weight: 300;
  font-family: 'Montserrat';
}
.tribute-content h3{
  font-size: 2.8rem;
  font-weight: 200;
  color: var(--color-gray);
  margin: 1rem auto;
}
.tribute-content p{
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}
.tribute-content ul li{
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}
.tribute-content span, .tribute-content a{
  color: var(--color-red);
  cursor: pointer;
}
.tribute-content a{
  text-decoration: underline;
}

.rate{
  margin: 1rem 1rem;
}
.rates h2{
  font-size: 3rem;
}
.rates p{
  text-align: left;
}
.rate-fee{
  display: grid;
  grid-template-columns: 80% 20%;
  gap: 2rem;
  margin-top: 1rem;
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 2rem;
}
.rate-fee h3{
  color: var(--color-white);
}
.fee{
  color: var(--color-red);
  margin-top: 1rem;
}

.other-rates{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem auto;
}
.other-rates b{
  color: var(--color-red);
}

@media screen and (max-width: 600px) {
  .rate-fee{
    grid-template-columns: 65% 35%;
    gap: 0.7rem;
  }
  .tribute-content h3{
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .tribute-content p{
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .rate-fee h3{
    font-size: 1.4rem;
  }
  .other-rates{
    grid-template-columns: 100%;
    margin-top: 1rem;
  }
}
