/* 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: 40px;
}
.social-icon {
  color: #fff;
}

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

:root {
  --bgColor: #223344;
  --bgColor2: #090a0f;
  --accentColor: #fff;
  --font: "Karla", sans-serif;
  --delay: 0.3s;
}

.button {
  position: relative;
  background-color: transparent;
  color: var(--accentColor);
  border: solid var(--accentColor) 2px;
  border-radius: 10px;
  font-size: 1rem;
  text-align: center;
  display: inline-block; /* Changed from block to inline-block */
  margin: 0 5px 10px 5px; /* Adjusted margins for better spacing */
  padding: 8px 16px; /* Adjusted padding for better flexibility */
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap; /* Prevents text from wrapping */
}

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

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

/* 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%);
}
