@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Major Mono Display";
    font-weight: bolder;
    line-height: 1.5;
    color: white;
    cursor: none;
    scroll-behavior: smooth;
    user-select: none;
    @media (max-width: 1080px) and (orientation: portrait) {
        cursor: auto;
    }
}
body {
    overflow-x: hidden;
    width: 100%;
}
button {
    background-color: transparent;
    border: none;
    font-size: 1.1dvw;
    transition: all .3s ease-in-out;
}
main > section {
    min-height: 100vh;
}
::-webkit-scrollbar {
    width: .2dvw;
    background: black;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #0186B4;
    border-radius: 1dvw;
}

.cursor {
    width: 2dvw;
    height: 2dvw;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99990;
    transition: transform 0.5s ease-out;
    transform: translate(-50%, -50%);
    filter: hue-rotate(180deg);
    mix-blend-mode: difference;
    background-color: tomato;
    box-shadow: 0 0 1dvw tomato;
    @media (max-width: 1080px) and (orientation: portrait) {
        display: none;
        width: 5dvw;
        height: 5dvw;
    }
}
section, footer {
    background: linear-gradient(to bottom, black, rgba(0, 0, 0, .3), rgba(0, 0, 0, .3), rgba(0, 0, 0, .3), black);
}


