@font-face {
    font-family: head;
    src: url(../GeneralSans-Medium.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: head;
}

html,
body {
    height: 100%;
    width: 100%;
    background: #000;
}

#main {
    width: 100%;
    height: 100vh;
    position: relative;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    display: none;
}


#minicirlce {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 5;
    opacity: 1;
    transition: all cubic-bezier(0.3, 1, 0.3, 1) 0.5s;
}