#toggleTitle {
    position: relative; /* 기준점이 필요함 */
  }

.main{
    color: rgb(75, 155, 132);
    background-color:  rgb(219, 236, 230);
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.main:hover{
    background-color: rgb(176, 209, 197);
    color: rgb(241, 248, 245);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
    display: block;
}

#toggleTitle:hover + #optionBoxes {
    display: block;
  }


.option-boxes {
    display: none;
    top: 100%;
    margin-top: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(-50px);
    pointer-events: none; 
    transition: all 0.3s ease;
    background-color: #efefefd9;
    border-radius: 12px;
}

.container:hover .option-boxes {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.option {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 4%;
    background-color:#e0dfdfd9;
    color: rgb(53, 53, 53);
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s ease;
}

.option:hover {
    background-color: #ffc6e7;
}
  
.malcha:hover{
    color: rgb(0, 105, 0);
}

.malcha{
    font-size: 15pt;
    font-weight: bold;
    color: rgb(37, 164, 37);
    text-shadow: 3px 2px 2px rgb(177, 177, 177);
}

.frame {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 20px; 
    background-color: #fffbdf;
    width: 80%; 
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

.img-malcha{
    display: block;
    border-radius: 12px;
    
}

#box1{
    width: 200px;
    height: 200px;
    background-color: pink;
    border-radius: 30px;
}

#box2{
    width: 200px;
    height: 200px;
    background-color: rgb(255, 227, 232);
    border-radius: 20px;
}

#box3{
    width: 200px;
    height: 200px;
    background-color: pink;
    border-radius: 10px;
}