/* =========================================================
   KlikkStop
   Alap webhely-stílusok
   ========================================================= */

html {
    font-size: 16px;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #041321;
    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    display: block;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(239, 202, 115, 0.75);
    outline-offset: 3px;
}

::selection {
    background: rgba(217, 170, 72, 0.35);
    color: #ffffff;
}

/* =========================================================
   Görgetősáv
   ========================================================= */

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

::-webkit-scrollbar-track {
    background: #03101d;
}

::-webkit-scrollbar-thumb {
    background: #183c5e;
    border-radius: 20px;
    border: 2px solid #03101d;
}

::-webkit-scrollbar-thumb:hover {
    background: #24577f;
}

/* =========================================================
   Bootstrap alapértelmezések semlegesítése
   ========================================================= */

.container,
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

header,
footer {
    flex-shrink: 0;
}

p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   Mobil
   ========================================================= */

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
}