:root {
    --hover-color: rgb(120, 38, 38);
    --background: #faf8f1;
}

canvas {
    transform: scale(1);
}

#frame {
    position: fixed;
    transform: translateX(-50%) translateY(-50%) scale(1);
    left: 50vw;
    top: 50vh;
    height: 750px;
    width: 450px;
    z-index: 2;
    /* border: solid black 1px; */
    box-shadow: rgba(0, 0, 0, 0.419) 3px 5px 10px;


}

body {
    background: var(--background);
}


input[type='range'] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 1px;
    position: relative;
    left: -2px;
    background: #000000;
    /* outline: 1px; */
    border-radius: 20px;
    /* opacity: 0.7; */
    /* -webkit-transition: .2s; */
    /* transition: opacity .2s; */
}

input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 10px;
    width: 10px;
    border-radius: 100%;
    /* transition: 300ms; */
    background: black;
}

input[type='range']::-webkit-slider-thumb:hover {
    background: var(--hover-color);
}

select {
    border-radius: 15px;
    border: solid 1px black;
    padding: 5px;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    background: none;
    font-size: 11px;
    /* transition: 300ms; */
}

select:hover {
    background: var(--hover-color);
    color: white;
}



/* input[type='range']::-webkit-slider-thumb:hover {
    background: white;
} */

.rangeCont {
    width: 300px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
}

.rangeCont div {
    margin-bottom: 25px;
    margin-top: 10px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    font-size: 10px;
}



.rangeCont input[type='range'] {
    margin-bottom: 0px;

}

#logo {
    position: fixed;
    transform: translateX(-50%) scale(2);
    left: 50vw;
    top: 100px;
    z-index: 2;
}

#name {
    font-family: "neue-haas-grotesk-display", sans-serif;
font-weight: 700;
font-style: normal;
line-height: 40px;
    position: absolute;
    bottom: -40px;
    /* letter-spacing: -1px; */
    /* background: red; */
    left: 470px;
    text-transform: uppercase;
    font-size: 45px;
    width: 300px;
    /* display:none; */

}



#family {
    display: flex;
    flex-flow: row;
    width: 200px;
    justify-content: space-between;



}

.container {
    position: fixed;
    /* border: solid rgb(0, 0, 0) 2px; */
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-items: center;
    width: 300px;
    padding: 15px;
    top: 100px;
    /* transform: translateY(-50%); */
    border-radius: 100px;
}

.design {
    right: 100px;
    height: 500px;

}

.perfume {
    left: 100px;
    height: 570px;

}

#titlepos {
    position: fixed;
    display: flex;
    /* background: red; */
    height: 300px;
    width: 200px;
    top: 450px;
    left: 35px;
    flex-direction: column;
    align-items: center;

}

.header {
    position: relative;
    color: black;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    font-size: 12px;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    /* margin-bottom: 20px; */
    padding: 5px;
}



#options {
    position: relative;
    background: none;
    display: flex;
    flex-flow: row;
    border: 1px solid black;
    width: 100px;
    height: 100px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.littlesquare {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;

}

.littlesquare:hover {
    background: black;
}

.downloadb {
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    color: black;
    background: none;
    border-radius: 18px;
    border: solid black 1px;
    padding: 10px;
    cursor: pointer;
    /* transition: 300ms; */
    margin-top: 10px;
}

.clearb {
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    color: black;
    background: none;
    border-radius: 18px;
    border: solid black 1px;
    padding: 9px;
    display: flex;
    align-items: center;
    height: 25px;
    opacity: 0.6;
    cursor: pointer;
    /* transition: 300ms; */
    font-size: 11px;
    margin-top: 8px;
}

.downloadb:hover {
    background: var(--hover-color);
    color: white;
}
.clearb:hover {
    opacity: 1;
}

#buttoncont {
    display: flex;
    flex-flow: column;
    align-items: center;
}