*{
    margin: 0;
    padding: 10;
    box-sizing:border-box;
    front: site 100%;

}

body{

background-color: rgb(188, 188, 188);
}

.header{
    width: 100%;
    height: 10vh;
    background-color: rgb(0, 0, 0);
}
h1{
    color:beige;
    text-indent: 20px;
}
h2{
    color:white;
    text-indent: 20px;
}

main{
    width: 100%;
    height: auto;
    display: flex;

}
.left{
    width: 90%;
    height: 90vh;
    background-color:rgb(128, 128, 128);
    display: flex;
    justify-content: center;
    align-items: center;
}
.right{
    width:10%;
    height: 90vh;
    background-color: rgb(128, 128, 128);
}

.div{
    width: 200px;
    height: 600px;
    background-color: rgba(0,0,0,0);
    transition: transform 1s ease;
    display: flex;
    align-items: center;
        
}
.div-child{
    width: 300px;
    height: 200px;
    border-radius: 5px;
    transform-style: preserve-3d;
    transition: transform 1s ease;
    background-color: rgb(255, 255, 255);
}
.div0{
    transform: rotateX(30deg) rotateY(-45deg) translate(60%,-30%)
}
.div1{
    transform: rotateX(30deg) rotateY(-45deg) translate(60%,-30%)
}
.div2{
   
    transform: rotateX(60deg) rotateY(0deg) rotateZ(45deg) translate(0%,0%);
}
.div3{
    transform: rotateX(-30deg) rotateY(-45deg) translate(-60%,-30%);
}
.div4{
    transform: rotateX(-30deg) rotateY(-45deg) translate(-60%,-30%);
}
.div:hover{
    transform:  translate(0%,-20%);
}
.option {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 700px;  
    border: 1px solid #ffb8b8; 
    gap: 30px;

}

.option-item {
   text-align: center;
   font-size: 12px; 
   padding: 15px;
   border: 1px solid #ccc;
   width: 100px;  
   word-wrap: break-word; 
}