body {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--extracted-color);
}

.inner-body {
    position: relative;
    margin-left: 25%;
    right: 0;
    top: 0;
    bottom: 0;
}

.sidebar {
    position: fixed;
    width: 25%;
    max-width: 350px;
    height: 100%;
    background-color: rgb(78, 78, 78);
    box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.5), inset -10px 0 15px -10px rgba(255, 255, 255, 0.8);
}

.first-layer {
    position: relative;
    height: 850px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(78, 78, 78);
    padding: 25px;
    border-radius: 45px;
    display: flex;
    justify-content: end;
    box-shadow: 0px -15px 15px rgba(255, 255, 255, 0.05),
    inset 0 -15px 15px rgba(0, 0, 0, 0.05), 0 15px 15px rgba(0, 0, 0, 0.3),
    inset 0 15px 15px rgba(255, 0, 0, 1);
}

#canvas { /*This is used for color extraction from image*/
    display: none;
}

#season {
    position: absolute;
    width: 90%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

#outImage-container img {
    height: 100%;
    cursor: pointer;
}