/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
}

body {
    overflow-x: hidden;
    position: relative;
    height: auto;
}

.transition {
    transition: all 3s ease;
}

.hidden {
    display: none;
}

.fullscreen {
    background: #323232 !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    height: 100vh !important;
    width: 100vw !important;
    left: 0 !important;
    bottom: 0 !important;
}

::-webkit-scrollbar {
    display: none;
}
