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

html,
body {
    position: relative;
    max-width: 100vw;
    background: var(--white);
    color: var(--text-black);
}

click-spark {
    z-index: 1000;
}

.section {
    max-width: 100vw;
    overflow: hidden;
    padding: 40px 20px;
    box-sizing: border-box;
}

.section.light {
    background: var(--white);
}

.section.dark {
    background: var(--black);
}

.no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.on-top {
    z-index: 100;
}
