@import url('https://fonts.googleapis.com/css2?family=BBH+Sans+Bartle&display=swap');

body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    overflow-x: hidden;
    overflow-y: hidden;
}

* {
    cursor: none;
    font-family: "BBH Sans Bartle", sans-serif;
    color: #0f0f0f;
}

#custom-cursor {
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: rgb(94, 94, 94) 2px solid;
    pointer-events: none;
    transition: transform 0.1s ease;
}

@media (pointer: coarse) {
    #custom-cursor {
        display: none;
    }
}

.mouse-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #fff, #1e1e1e);
    transition: background-position 0.1s;
    z-index: -1000;
}

#center {
    text-align: center;
    height: 50vh;
    font-size: clamp(32px, 6vw, 64px);
}

button {
    font-size: clamp(25px, 5vw, 55px);
    background: #ce3affad;
}

input {
    font-size: clamp(25px, 4vw, 55px);
    background: transparent;
    border: none;
    text-align: center;
}