:root {
    --primary-color: rgb(255, 255, 255);
    --secondary-color: rgb(212, 238, 236);
    --background-color: rgb(60, 60, 59);
}

::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
    scroll-behavior: smooth;
}

@font-face {
    font-display: block;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/montserrat-v29-latin-regular.woff2') format('woff2'),
        url('./fonts/montserrat-v29-latin-regular.ttf') format('truetype');
}

@font-face {
    font-display: block;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/montserrat-v29-latin-700.woff2') format('woff2'),
        url('./fonts/montserrat-v29-latin-700.ttf') format('truetype');
}


* {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
    box-sizing: border-box;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Arial Rounded MT Bold", Arial, sans-serif;
}

h3, h4, h5, h6 {
    text-align: left;
    width: 100%;
}

p {
    line-height: 1.35;
    text-align: left;
    width: 100%;
}

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
}

body .content {
    width: clamp(150px, 100vw, 1000px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    color: var(--primary-color);
    background-color: var(--background-color);
}

.button {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    font-family: "Arial Rounded MT Bold", Arial, sans-serif;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    opacity: 0.8;
}

#primary-button,
.button-primary {
    background-color: var(--primary-color);
    color: var(--background-color);
}

#secondary-button,
.button-secondary {
    border: 2px solid var(--primary-color);
    background-color: rgba(0, 0, 0, 0);
    color: var(--primary-color);
}

#alt-primary-button,
.button-alt-primary {
    background-color: var(--background-color);
    color: var(--primary-color);
}

#alt-secondary-button,
.button-alt-secondary {
    border: 2px solid var(--background-color);
    background-color: rgba(0, 0, 0, 0);
    color: var(--background-color);
}

.heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.heading h2 {
    padding: 0;
    margin: 0;
    text-align: center;
}

.heading hr {
    width: 80px;
    box-sizing: border-box;
    border: 0 none transparent;
    border-top: 3px solid var(--secondary-color);
    border-radius: 10px;
}


main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 0 10px 0;
}

section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 15px;
}

ul {
    padding-left: 25px;
    width: 100%;
}

ul li {
    line-height: 1.5;
}

.pp-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    word-break: break-word;
}

.pp-content a {
    color: var(--secondary-color);
}

footer {
    margin-top: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 15px;
    background-color: var(--background-color);
    color: var(--primary-color);
}

footer .links {
    display: flex;
    flex-direction: row;
    gap: 12px;
    color: var(--primary-color);
}

footer .links .item {
    color: var(--primary-color);
    font-size: 0.75rem;
}

footer .footer-dpv img {
    width: clamp(80px, 35%, 150px);
}

footer p {
    font-size: 0.75rem;
    margin: 5px;
    width: initial;
}

footer .footer-dpv {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}
