/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––

- Rounded user avatars
- Buttons
- Brand Styles

*/


/* Rounded avatars
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Disable this if you don't want rounded avatars for users */
.rounded-avatar {
  border-radius: 50%;
}

.social-icon {
  font-size: 32px;
  padding: 10px;
}
.social-icon-div {
  padding-bottom: 30px;
}
.social-icon {
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

:root {
  --bgColor: #0a061a;
  --bgColor2: #020106;
  --accentColor: #00ff88;
  --font: 'roboto', 'Arial', sans-serif;
  --delay: .3s; }

.button {
  position: relative;
  background-color: transparent;
  color: #f8f9fa;
  border: solid #00ff88 2px;
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
  display: block;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 10px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
  .button:hover {
      background-color: #00ff88;
      color: #020106;
      box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
  }
}

.button:active {
  background-color: #00ff88;
  color: #020106;
}


/* Brand Icons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.icon {
  padding: 0px 8px 3.5px 0px;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
}

.button:hover .icon {
  -webkit-filter: invert(100%) grayscale(100%);
  -moz-filter: invert(100%) grayscale(100%);
  filter: invert(100%) grayscale(100%);
}

/* Avatar glow */
.rounded-avatar {
  border: 3px solid #00ff88;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}