/* https://fonts.google.com 
-----------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

body {
    margin: 0;
    position: relative;
    font-family: sans-serif;
    height: 100vh;
    background: #1A1C24;
    /* background: url(../img/bg.jpg)center center no-repeat; */
    background: linear-gradient(#333 8%, #262626 49%);
    font-family: "Inter", sans-serif;
}

html,
body {
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p {
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

pre {
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0px 20px;
}


button {
    border: none;
    background: transparent;
    cursor: pointer;
}


/* scroll
-----------------------------------------------------------------*/
::-webkit-scrollbar {
    width: 0px;
}



@media (max-width: 767px) {
    .container {
        padding: 0px 15px;
    }
}