body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #222;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    padding-top: 0px;
    border-radius: 25px;
    margin: 10px;
}

#shareButton {
    padding: 0px;
    background-color: #007BFF;
    color: #FFBF00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 16px;
}
#shareButton i {
    margin-right: 0px;
    margin-left: 0px;
    margin-top: 15px;
}

#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  width: 65px;
  height: 65px;
  padding: 10px;
  border-radius: 50%;
  font-size: 20px;
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
}
#scrollTopBtn:hover {
  opacity: 1;
}
#scrollTopBtn svg {
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin: auto;
}

.social-links {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
    -webkit-tap-highlight-color: transparent;
}

.social-links li {
    display: inline-block;
    margin: 0 10px;
}

.container {
    display: block;
    text-align: center;
    height: 100%;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 10px;
    @media (min-width: 768px) {
    width: 50%;
  }
}

.links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.links a {
    display: block;
    padding: 0px 0px;
    background-color: #333;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    width: 100%;
    min-height: 25px;
    text-align: center;
    line-height: 25px;
    font-size: 18px;
    -webkit-tap-highlight-color: transparent;
}

.links li {
    margin: 5px 0;
}

.links a:hover {
    background-color: #555;
}

p, li, a, button, h1 {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

@keyframes blink {
    0%, 20%, 100% {
        opacity: 0.5;
    }
    10% {
        opacity: 1;
    }
}
::-webkit-scrollbar {
    width: 12px;
    background-color: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
scrollbar-width: thin;
scrollbar-color: rgba(0, 0, 0, 0.5) rgba(0, 0, 0, 0.1);
