:root {
  --bgColor: #223344;
  --bgColor2: #090a0f;
  --accentColor: #E6E6E6;
  --font: 'Karla', sans-serif;
  --delay: .3s;
}

.links__acessos {
  max-width: 675px;
  width: 100%;
  display: block;
  margin: 27px auto;
}

.link__acessos {
  position: relative;
  background-color: transparent;
  color: var(--accentColor);
  border: solid var(--accentColor) 2px;
  border-radius: 10px;
  font-size: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 10px;
  text-decoration: none;
  /*transition: all .25s cubic-bezier(.08, .59, .29, .99);*/
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
  .link__acessos:hover {
    background-color: var(--accentColor);
    color: var(--bgColor);
  }
}

.link__acessos:active {
  background-color: var(--accentColor);
  color: var(--bgColor);
}

