/* Reset some default styles for better consistency */
*{
    margin:             0;
    padding:            0;
    box-sizing:border-box;
}
body{
    display:                        block;
    position:                    relative;
    background-color:rgb(170, 165, 121);
    }
/* Header section styles */
header {
    display:                 flex;
    width:                100vmax;
    height:              1.5 vmax;
    background-color:     khaki;
    justify-content:space-between;
    align-items:           center;
}
header img{
    width:    1.25vmax;
}
header h3{
    font-size:1.25vmax;
}
#language-switch select {
    font-size:          0.75vmax;
    background-color:darkkhaki;
    border-radius:           5px;
    cursor:              pointer;
}
.move-scale, .move-weight, .move-spatula, .move-thermometer, .tripod, .move-stand, .move-cap{
    transform: translate(0, 0);
    transition: transform 2.5s; /* Add a transition property for smoother movement */
}
#weight{
    top:    24.25vmax;
    left:      75vmax;
    width:      7vmax;
    height:     3vmax;
    cursor:   pointer;
    position:absolute;
    z-index:        2;
}
#lab{
    width: 100vmax;
    height: 45vmax;
}
#scale{
    top:    14.25vmax;
    left:      43vmax;
    width:    9.5vmax;
    height: 13.75vmax;
    position:absolute;
}
#scale_{
    top:    14.15vmax;
    left:      43vmax;
    width:    9.5vmax;
    height: 13.75vmax;
    position:absolute;
}
#scale4{
    top:       21vmax;
    left:      43vmax;
    width:    9.5vmax;
    height: 13.75vmax;
    position:absolute;
}
#spatula{
    top: 23.15vmax;
    left: 65.75vmax;
    width: 9vmax;
    height:4.75vmax;
    z-index: 3;
    cursor: grabbing;
    position: absolute;
}
#spatula2{
    top: 23.15vmax;
    left: 65.75vmax;
    width: 9vmax;
    height:4.75vmax;
    z-index: 3;
    cursor: grabbing;
    position: absolute;
}
#cap{
    top: 14.01vmax;
    left: 86.55vmax;
    width: 3.5vmax;
    height: 1.25vmax;
    cursor: grabbing;
    position: absolute;
    z-index: 4;
}
#sulphur{
    top: 14vmax;
    left: 85vmax;
    width: 6.5vmax;
    height: 10vmax;
    z-index: 3;
    cursor: pointer;
    position: absolute;
}
#sulphur_{
    top: 14.75vmax;
    left: 85vmax;
    width: 6.5vmax;
    height: 9.25vmax;
    cursor: grabbing;
    position: absolute;
    z-index: 3;
}
/* Footer section styles */
footer{
    width: 100vmax;
    display: flex;
    background-color:coral;
    align-items: center;
    justify-content: space-between;
}
#content-en {
    width: 100vmax;
    display: flex;
    position: absolute;
    background-color:coral;
    align-items: center;
    justify-content: space-between;
}
#content-hi {
    width: 100vmax;
    display: flex;
    position: absolute;
    background-color:coral;
    align-items: center;
    justify-content: space-between;
}
/* Prev and Next buttons */
button {
    background-color:silver;
    font-size: 1.5vmax;
    font-weight: bold;
    border-style: solid;
    border-radius: 5px;
    cursor: pointer;
    width: 5.5vmax;
    height: 2.5vmax;
    
}
button:hover{
    background-color:rgb(75, 73, 73);
    transform:translateY(-0.1vmax);
}
h5{
    position: relative;
    font-size: 1vmax;
    animation-name: Steps;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}
@keyframes Steps{
    0%{left: -100vmax;}
    100%{left: 0vmax;}
}

  