:root {
   font-size: 16px;
}

* {
   margin: 0px;
   padding: 0px;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

html::-webkit-scrollbar {
   width: 0px;
}

body {
   width: 100%;
   min-height: 100vh;
   -webkit-transition: all 0.3s ease;
   -moz-transition: all 0.3s ease;
   -o-transition: all 0.3s ease;
   transition: all 0.3s ease;
   display: flex;
   flex-direction: column;
}

a,
a:active,
a:visited,
a::before,
a::after {
   text-decoration: none;
   color: black;
}

button {
   background: none;
   outline: none;
   cursor: pointer;
   border: none;
}

::selection {
   background-color: rgb(222, 161, 40);
}

ul,
ol {
   list-style: none;
   padding: 0;
   margin: 0;
}

img {
   user-select: none;
   width: 100%;
}