#siteEditorSpace{
    background-color: white;
    height:100%;
    width: 100%;
    text-align: center;
}

#siteEditorMenu{
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translate(-50%);
    z-index: 2;
    position: relative;
    max-width: 1000px;
    margin-bottom: -1px;
}

.step{
    cursor: pointer;
    width: 60px;
    height: 50px;
    display: flex; 
    align-items: center;
    justify-content: center;    
    border-left: 1px solid gray;
    border-top: 1px solid gray;
    border-bottom: 1px solid transparent;
}

.stepNumber{
    color: gray;
    font-family: jost;
    font-weight: 400;
    font-size: 25px;
    margin: auto;
    cursor: pointer;
}

#contentSpace{
    background-color: white;
    width: 100%;
    max-width: 1100px;
    left: 50%;
    transform: translate(-50%);
    text-align: left;
    padding: 80px;

    border-style: solid;
    border-radius: 30px;
    border-color: grey;
    border-width: 1px;
    z-index: 1;

    display: block;
    margin-left: 50%;
}

@media screen and (max-width: 1100px) {
    #contentSpace{
        min-height: 700px;
    }
}

@media screen and (min-width: 1000px) {
    #contentSpace{
        min-height: 820px;
    }
}


#previewImg {
    z-index: 3;
    box-shadow: 0px 0px 3px grey;
    position: absolute;
    top: 80px;
    right: 80px;
    width: 40%;
    object-fit: cover;
    object-position: center;
}
