/*///////////////////////////////////////RESET CSS///////////////////////////////////////*/
* {box-sizing: border-box;}
::selection {
  color: rgb(255, 255, 255);
  background: #421944
}

html, body, h1, h2, h3, h4, h5, h6, a, p, span, em, small, strong, sub, sup, mark, del, ins, strike, abbr, dfn, blockquote, q, cite, code, pre, ol, ul, li, dl, dt, dd, div, section, article, main, aside, nav, header, hgroup, footer, img, figure, figcaption, address, time, audio, video, canvas, iframe, details, summary, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td 
{
    margin: 0;
    padding: 0;
    border: 0;
}
 
html {
    font-family: 'Montserrat', sans-serif;
}

html, body {
  position: relative;
  max-width: 100%;
  max-height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    margin: 0px auto;
}

body {
  margin: 0 auto; 
  background-color: #000;
}

header, main , footer
{
    display: grid;
    align-items: center;
    width: 100%; 
}

a { 
    color: #fff;
    text-decoration: none;}
ul {
    list-style-type: none;
}

::-webkit-scrollbar-thumb {
  background: #421944; 
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #000; 
}

/*///////////////////////////////////////RESET CSS END///////////////////////////////////////*/