body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  background-color: #21222c;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased !important;
  height: 100%;
}
h1 {
  display: block;
  font-size: 2em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}
h2 {
  display: block;
  font-size: 1.5em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}

.side-bar {
  margin-top: 25px;
  width: 250px;
  background-color: #21222c;
  display: flex;
  justify-content: center;
}
.logo-main {
  display: flex;
  flex-direction: column;
}
h1.logo {
  font-size: 2.5rem;
  animation: showLogo 800ms;
}

h1.logo span.logo-value {
  color: #ffd732;
}

h1.logo span.logo-code {
  color: #fff;
}
.logo-slogan {
  justify-content: flex-end;
  margin-top: -5px;
  padding: 0;
}

.logo-slogan h2 {
  text-align: right;
  color: #c4bfaf;
  margin-right: 20px;
  animation: showLogo 1400ms;
  font-size: 1rem;
  /*animation-delay: 200ms;
    animation-fill-mode: backwards;*/
}
h1.logo span.logo-underline {
  animation: piscaUnderlineLogo 1s infinite;
}
@keyframes piscaUnderlineLogo {
  0%,
  100% {
    color: #21222c;
  }
  50% {
    color: #ffd732;
    opacity: 0.9;
  }
}

@keyframes showLogo {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

.braces {
  color: #ffd732;
  font-weight: bold;
}
p {
  color: white;
  margin-left: 20px;
  line-height: 180%;
}
.btn {
  border-radius: 0;
  border: 1px solid #ffd732;
  color: #ffd732;
}
.btn:hover {
  color: white;
  border: 1px solid white;
}
h6 {
  color: #ff7494;
  font-weight: normal;
}
address {
  color: white;
  opacity: 0.7;
}
hr {
  border: 1px solid #ff7494;
}
address:hover {
  opacity: 1;
}
