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

body{
  font-family:Arial, sans-serif;
  background:#f5f5f5;
  color:#333;
  line-height:1.5;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

/* CONTAINER GLOBAL */
.container{
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

html{
    scroll-behavior:smooth;

    
}

/* ========================================
   SCROLLBAR PREMIUM
======================================== */

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

::-webkit-scrollbar-track{
    background:#1a0000;
}

::-webkit-scrollbar-thumb{

    background:
    linear-gradient(
    to bottom,
    #ffcc00,
    #ff7b00);

    border-radius:20px;
}