*,*::after,*::before{
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

body{
    padding: 0px;
    margin: 0px;
}

section{
    width: 100%;
    height: 85vh;
    scroll-snap-align: center;
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
        supported by Chrome, Edge, Opera and Firefox */
}

::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #131e34;
    border-radius: 10px;
}

.section-separator{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

span.sectionName {
    border-radius: 1000em;
    background-color: #1212126b;
    color: white;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.section-separator:after, .section-separator:before {
    background-color: rgba(105, 105, 105, 0.288);
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 30%;
}