/* 
Theme Name: foxdot.me
Theme URI: https://foxdot.me/
Description: Ein individuelles Child-Theme basierend auf Hello Elementor.
Author: foxdot.me / Steve Czymek
Author URI: https://foxdot.me/
Template: hello-elementor
Version: 1.0.0
Text Domain: foxdotme
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/

/* ==========================================================================
   Eigene CSS-Styles ab hier
   ========================================================================== */

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Basis für Mobile */
}

body {
    font-size: 1rem;
}

@media (min-width: 768px) {
    html {
        font-size: 18px;
    }
}

::-moz-selection {
    background: #ffae00;
    color: #3c434a;
}
::selection {
    background: #ffc037;
    color: #3c434a;
}

/* Firefox */
html {
  scrollbar-color: #ffae00 #3c434a; /* Regler, Hintergrund */
  scrollbar-width: auto;            /* oder: thin */
}

/* Chrome, Edge, Safari, Opera */
::-webkit-scrollbar {
  width: 12px;
  height: 12px; /* für horizontales Scrollen */
}

::-webkit-scrollbar-track {
  background: #3c434a;
}

::-webkit-scrollbar-thumb {
  background: #ffae00;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e69d00;
}