*,
*::before,
*::after{
  box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
}
.flex{
    display: flex;
    align-items: center;
    justify-content: center;
}
.world-container{
    position:relative;
    /* background-color: red; */
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.img-container{
    position:absolute;
    /* background-color: red; */
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.panel{
    z-index: 1;
    pointer-events: none;
    position:absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    scale: 1.1;
}
.prop{
    z-index: 3;
    width: 25%;
    /* position:absolute; */
    /* left: 10%;
    bottom: 20%; */
    object-fit: cover;
    cursor: pointer;
}
.prop_container{
    position:relative;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    visibility: visible;
    
}
.prop_cont{
    flex-direction: row;
    position: absolute;
    left: 10%;
    bottom: 20%;
    width: 50%;
    justify-content: center;
    align-items: center;
}
.pulse {
    animation: pulse 1s infinite ease-in-out alternate;
  }
  @keyframes pulse {
    from { transform: scale(0.8); }
    to { transform: scale(1.2); }
  }
.prop:hover{
    transform: scale(1.2);
    transition: transform 0.2s ease-out;
}
.prop_text{
    color: white;
    width: 50%;
    margin-left: 2rem;
}
img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.bg{
    pointer-events:auto;
    cursor: pointer;
    z-index: 1;
}
.z1{
    z-index: 1;
    
}
.z2{
    z-index: 2;
    pointer-events: none;
}
.z3{
    z-index: 4;
    pointer-events: none;
}
.z4{
    z-index: 5;
    pointer-events: none;
}
.z5{
    z-index: 6;
    pointer-events: none;
}
.z6{
    z-index: 7;
    pointer-events: none;
}

.button_ext{
    display: none;
    background-color: red;
    z-index: 100000;
    position: absolute;
    right: 0;
    top: 0;
    margin: 2%;
    padding: 1%;
    color: white;
    cursor: pointer;
}

.button_ext:hover{
    scale: 1.1;
}