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

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    background-color: #c1c1c1;
    border-radius: 10px;
    background-clip: padding-box;
    border: 2px solid transparent;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #9c9c9c;
}

::-webkit-scrollbar-thumb:active {
    background-color: #727272;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-family: verdana, geneva, sans-serif;
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 16px;   
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

@media only screen and (min-width: 900px) {
    body {
        overflow: auto !important;
    }
}

main {
    flex-grow: 1;
}

header,
footer {
    flex-grow: 0;
    flex-shrink: 0;
}

@media only screen and (min-width: 950px) {
    .not-in-pc {
        display: none !important;
    }
}

@media only screen and (max-width: 950px) {
    .not-in-mob {
        display: none !important;
    }
}

button {
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: 0.2s;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}

a {
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
    color: inherit;
}

#cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: #febc5b7d;
    border: 1px solid #febc5b;
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.1s ease-out;
    z-index: 9999;
}

img {
    max-width: 100%;
}