@charset "utf-8";
@import url("https://rsms.me/inter/inter.css");

/* littlebit main styles */

body {
    background-color: #000000;
    color: white;
    font-family: InterVariable, Inter, sans-serif;
    text-align: center;
    justify-content: center;
}

a {
   color: lightgreen;
}

nav{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

nav a, button, a.button {
    background-color: #00ffc8;
    color: black;
    padding: 5px 10px;
    text-decoration: none;
    border: none;
    font-family: InterVariable, Inter, sans-serif;
    font-size: 16px;
    margin: 5px;
    border-radius: 10px;
}

nav a.warning, button.warning, a.button.warning {
    background-color: white;
    color: red;
}

nav a:hover, button:hover, a.button:hover {
    background-color: #6f00ff;
    color: white;
}

nav a:active, button:active, a.button:active {
    background-color: #0000ff;
    color: white;
}

a.button {
    margin: 0;
}

h1,
h2 {
    font-family: InterVaraible, InterDisplay, sans-serif;
}

article {
    text-align: left;
    position: relative;
    left: 25%;
    right: 25%;
}

.articleinfo {
    font-family: InterVariable, Inter, sans-serif;
    font-weight: bold;
    font-size: 20px;
}

/* List Item */
ul li {
    text-align: left;
    position: relative;
}

ul.imagelist {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 70%;
}

ul.imagelist li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

ul.imagelist li img {
    height: 150px;
    border: 1px solid #00ffc8;
}

ul.imagelist li .description {
    flex: 1;
    min-width: 0;
}

ul.imagelist li .description * {
    margin-top: 0;
}

.bold {
    font-weight: bold;
}

#internal-warning-banner {
    background: none;
    color: red;
    font-family: InterVariable, Inter, sans-serif;
    font-size: 18px;
    font-weight: bold;
    padding: 5px;
    text-align: center;
    border: 2px solid red;
    margin: 10px 0;
}


/* badges stuff */

.badge-container button, .badge-container a {
    background-color: #00000000;
    padding: 0;
    margin: 0;
}

#mybadge {
  position: relative;
  cursor: pointer;
}

#mybadge::after {
  content: "Click to copy";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

#mybadge:hover::after {
  opacity: 1;
}

/* more stuff */

img.pfp {
  width: 300px;
  height: 300px;
  margin: 15px;
  border-radius: 20%;
}

footer {
  margin-top: 30px;
}