a {
  text-decoration: none;
  color: var(--txt-link);
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

a:hover:not(:has(.card)) {
  color: var(--accent-green);
}


hr {
  width: 65%;
  height: 0px;
  border: none;
  border-top: 5px solid var(--bg-dark);
  border-radius: 10px;
}

p,
h3 {
  text-align: center;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 0;
}

h1, h2, h3 {
  text-align: center;
}

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--fg-white);
  background: #161616;
  background: radial-gradient(at center, #161616 0%, #0D0D0D 60%);
  transition: .4s ease-in-out;
}

header h1, header p {
  text-align: center;
  margin: 0;
  font-size: 4rem;
  padding: 0;
}

header p {
    font-size: 1rem;
}

#platforms, #contact {
  display: flex;
  justify-content: center;
}

#platforms svg, 
#contact svg {
  width: 50px;
  padding: 10px;
}

.logo {
  width: 40px;
  padding-top: 5px;
  padding-bottom: 2px;
  margin: 0;
}

#version {
  margin-left: 0.5rem;
  animation: version 2s ease 0s infinite;
  font-size: 1rem;
  vertical-align: super;
}

#version-plain {
  font-size: 1rem;
  vertical-align: super;
  margin-left: 0.25rem;
  color: #838383;
}


@keyframes version {
    0%   { color: #8a4bff; } 
    25%  { color: #3c49ff; }  
    50%  { color: #4cd3c2; }
    75%  { color: #3c49ff; }
    100% { color: #8a4bff; }
  }

button {
  background-color: var(--green);
  color: var(--bg-light);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #45a049;
  background-color: var(--bg-light);
  color: var(--green);
  border: 2px solid var(--green);
}

button:active {
  background-color: var(--bg-dark);
  color: var(--green-dark);

}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.front-logo-img {
  width: 55px;
  padding: 0;
  margin: 0;
  align-items: middle;
}