body {
    margin: 10px auto;
    max-width: 2400px;
    line-height: 1.6;
    font-size: 18px;
    padding: 0 10px;
    font-family: "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji";
}

.smallbar {
    font-family: -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji";
}

#domains {
    font-size: 14px;
    background-color: #277FC9;
}

a {
    color: #277FC9;
    text-decoration: none;
}

a:hover {
    color:#f1f1f1;
}

h1, h2, h3 {
    line-height: 1.2;
}

.bluecreeper512 {
    color: #277FC9;
}


ul {
    list-style-type: none;
    margin-top: 0px;
}

p {
    margin-bottom: 9px;

}

li::before {
    content: "- ";
}

/* inter-regular - latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    unicode-range: U+0-7C,U+7D-FFFF;
    src: local(''),
            url('../fonts/inter-v8-latin-regular.woff2') format('woff2') /* Chrome 26+, Opera 23+, Firefox 39+ */
}

@font-face {
    font-family: 'DOS';
    src: local(''),
          url('../fonts/dos_font.ttf') format('truetype'); 
}

.hcaptcha-disclaimer {
    font-size: 16px;
}

 /* The sidebar menu */
.sidebar {
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 150px; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #FFFBF1; 
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px;
}

.sidebar a {
  padding: 0px 0px 0px 16px;
  text-decoration: none;
  font-size: 22px;
  display: block;
}

/* When you mouse over the navigation links, change their color */
.sidebar a:hover {
  color: #f1f1f1;
}

/* Style page content */
.main {
  margin-left: 150px; /* Same as the width of the sidebar */
  padding: 0px 10px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
} 

.web_badges {
    margin-left: 150px;
    padding: 0px 10px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.marquee {
  --gap: 1rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee_content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 10s linear infinite
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@media (prefers-color-scheme: dark) {
    body, input, textarea {
        background-color: #1e1e1e;
        color: white;
    }

    input, textarea {
        border-radius: 1px;
        border-color: #75374A;
    }

    #domains {
        background-color: #2b2b2b;
        word-wrap: break-word;
    }
    
    a {
        color: #3391ff;
    }

    .sidebar {
        background-color: #111;
    }
}

iframe {
    display: block;
    border-style:none;
    margin: 0 auto;
    overflow-x: scroll;
    max-width: 600px
}

#clock-container {
    display: inline-block;
    text-align: left;
    top: 20px;
    right: 20px;
    font-family: "DOS";
    font-size: 1.5rem;
    color: #0f0;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    border-radius: 6px;
    max-width: 500px;
}