:root {
    --cor-pri: #e6ebef;
    --cor-extra: #b4cfe6;
    --cor-sec: #7fa7c7;
    --cor-ter: #3f5f78;
    --acc-01: #8b7a6b;
    --acc-02: #3a2817;
    --acc-03: #d9d0b9;
    --fs-title: clamp(3rem, 4vw + 0.5rem, 4rem);
    --fs-text: clamp(1rem, 1.2vw + 0.5rem, 2rem);
    --size-img: clamp(10rem, 19vw + 0.5rem, 15rem);
    --size-img02: clamp(15rem, 29vw + 0.5rem, 22.5rem);
}

html {
    scrollbar-gutter: stable;
}

::-webkit-scrollbar {
  width: 12px;
}

/* 2. Fundo da barra (Track) */
::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 0;
}

/* 3. O "pegador" que desliza (Thumb) */
::-webkit-scrollbar-thumb {
  background: var(--cor-sec);
}

/* Mudança de cor ao passar o mouse */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--cor-ter);
  transition: background-color 0.2s ease-in-out;
}

/* 4. As setinhas (Botões) */
::-webkit-scrollbar-button:single-button {
  background-color: var(--cor-ter);
  display: block;
  border-style: solid;
  height: 13px;
  width: 13px;
}

/* Seta para cima */
::-webkit-scrollbar-button:single-button:vertical:decrement {
  border-width: 0 5px 8px 5px;
  border-color: transparent;
}

/* Seta para baixo */
::-webkit-scrollbar-button:single-button:vertical:increment {
  border-width: 8px 5px 0 5px;
  border-color: transparent;
}

.rubik-mono-one-regular {
    font-family: "Rubik Mono One", monospace;
    font-weight: 100;
    font-style: normal;
}

body {
    background-color: var(--cor-pri);
    font-family:"Fuzzy Bubbles", monospace;
    margin: 0;
    height: 300px;
    overflow-y: scroll;
}

/* Chrome, Safari e Opera */
.elemento::-webkit-scrollbar {
    display: none;
}

/* IE, Edge e Firefox */
.elemento {
    -ms-overflow-style: none;  /* IE e Edge */
    scrollbar-width: none;  /* Firefox */
    overflow-y: scroll; /* Mantém a funcionalidade */
}


.content {
    width: clamp(600px, 65vw + 1rem, 80vw);
    margin: 0 auto;
    padding: 4vw 1vw;
    border-bottom: 0.1vw solid var(--acc-01);
}

.content h1 {
    font-family: "Rubik Mono One", monospace;
    font-weight: 700;
    font-style: bold;
    font-size: var(--fs-title);
    color: var(--acc-02);
    margin: 0;
    line-height: 1.2;
}

.content h4 {
    font-family: "Fuzzy Bubbles", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: var(--fs-text);
    color: var(--acc-01);
    margin: 0;
    margin-bottom: 1.5rem;
    margin-top: 0.25rem;
    line-height: 1.5;
}

.content p {
    font-family: monospace;
    font-weight: normal;
    color: var(--cor-ter);
    font-size: var(--fs-text);
    font-weight: 100;
    margin: 0;
    text-align: justify;
    hyphens: auto;
    line-height: 1.5;
}

.content strong {
    font-family: monospace;
    font-weight: bold;
    color: var(--cor-ter);
    font-size: var(--fs-text);
    font-weight: 600;
}

.content a {
    color: inherit;
    text-decoration: underline;
    transition: 0.25s ease-in-out;
}

.content a:hover {
    color: var(--cor-sec);
    transition: 0.25s ease-in-out;
}
