@import url('https://fonts.googleapis.com/css2?family=Rokkitt:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*
font-family:'Rokkitt', serif;
font-family: 'Roboto', sans-serif;
*/

* {
    margin: 0;
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-track {
    border-radius: 16px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 1);
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    background-color: rgb(27, 27, 27);
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    cursor: pointer;
}

.bg {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    z-index: -999;
    width: 100vw;
    height: 100vh;
}

header {
    position: sticky;
    z-index: 400;
    top: 0;
}

.bg-image img {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    z-index: -1000;
}

@media(max-width:728px) {
    .bg-image img {
        height: 100vh;
    }
}

textarea {
    resize: vertical;
}