/** @format */

* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-family: -apple-system, sans-serif;
    letter-spacing: -0.5px;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 16px;
}

body {
    height: 11000px;
    position: relative;
    overflow: hidden;
    font-family: sans-serif;
}

#info {
    position: fixed;

    z-index: 1000;

    /*  */
    opacity: 0.5;
    /*  */
}

.value {
    margin: 10px 0;
    font-size: 24px;
    color: #fff;
}

button {
    padding: 10px 20px;
    font-size: 16px;
}

#imageMovingConatiner {
    height: 100vh !important;
    width: 100vw !important;

    overflow: hidden;
    background-color: #d3d3d3;

    background-position: center;
    background-size: cover;
}

#imageMoving {
    height: calc(100vh * 2);
    width: calc(100vw * 2);
    translate: calc(-100vw / 2) calc(-100vh / 2);

    background: linear-gradient(blue, red);
    background-image: url(./image1.jpg);
    background-position: center;
    background-size: cover;

    opacity: 1;
}

#parameterTest {
    position: absolute;
    z-index: 10000;

    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;

    background-color: rgb(40, 40, 40);
    border-radius: 8px;
    font-weight: bold;
    color: rgb(255, 255, 255);
}
