@font-face {
    font-family: "Goia Bold";
    src: url(fonts/GoiaDisplay-ExtraBold.otf);
}

html {
    scroll-behavior: smooth;
}

body {
    /* cursor: url(pencil.png) -10 25, auto; */
    font-family: "Goia Bold", sans-serif;
    font-weight: 700;
    color: #111;
    /* overflow-y: hidden; */
}

img {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.bg {
    background: url(assets/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

#svg {
    overflow: visible;
    height: 100%;
    transform: translateZ(0);
}

#path {
    stroke-width: 2;
    stroke: gray;
    fill: none;
}

#container {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    /* scroll-behavior: smooth; */
}

#container::-webkit-scrollbar {
    width: 0;
}

section {
    height: 100vh;
    scroll-snap-align: start;
}

/* Styling the color input */

#selection-tool.active,
#hand-tool.active,
#undoBtn.active,
#redoBtn.active {
    background-color: #9747ff; /* Change to the desired background color */
}

input[type="color"] {
    border-radius: 25px;
    height: 30px;
    width: 30px;
}

input[type="range"] {
    width: 68px;
    margin: 4.3px 0;
    background-color: transparent;
}

input[type="range"]:focus {
    outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: rgba(217, 217, 217, 0.78);
    border-radius: 25px;
    width: 68px;
    height: 2.5px;
    box-shadow: 0 0 1px rgba(217, 217, 217); /* Adjust shadow to be spread on all sides */
}

input[type="range"]::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
    background: #fff;
    border: none;
    border-radius: 15px;
    -webkit-appearance: none;
    margin-top: -6px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); /* Adjust shadow to be spread on all sides */
}

input[type="range"]::-moz-range-track {
    background: rgba(217, 217, 217, 0.78);
    border-radius: 25px;
    width: 100%;
    height: 2.5px;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #fff;
    border: none;
    border-radius: 15px;
}

input[type="range"]::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 5.2px 0;
    color: transparent;
    width: 100%;
    height: 2.5px;
}

input[type="range"]::-ms-thumb {
    width: 15px;
    height: 15px;
    background: #fff;
    border: none;
    border-radius: 15px;
}

@supports (-ms-ime-align: auto) {
    input[type="range"] {
        margin: 0;
    }
}

.hover img:hover {
    background-color: #ececec;
}

.hover-img {
    transition: transform 0.2s ease;
    transform-origin: center bottom; /* Adjust transform origin */
}

.img-div:hover {
    background-color: #ececec;
}

/* .img-div:hover .hover-img {
    transform: scale(1.2, 1.3);
} */

.shadow-effect {
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1),
        /* Top shadow */ -4px 0 4px rgba(0, 0, 0, 0.1),
        /* Left shadow */ 4px 0 4px rgba(0, 0, 0, 0.1); /* Right shadow */
}

.shadow2 {
    box-shadow: inset 0 0 12px rgb(0 0 0 / 0.07);
}
