/*
Theme Name: Blank WP Theme
Theme URI: 
Description: Um tema 100% em branco para WordPress.
Version: 1.0.0
Author: Antigravity
Author URI: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blank-wp-theme
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    color: #000000;
}

/* Hide scrollbar for mobile sliders */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}