/* 기본 스타일 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.image-display {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.background-container {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.3s ease;
}

.overlay-image {
    position: absolute;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
    /* transition: all 0.3s ease; */
    cursor: pointer;
    z-index: 2;
}

.overlay-image:hover {
    transform: scale(1.0);
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4); */
}


/* 반응형 디자인 */
/* 모바일 화면에서 변경하고 싶으면 아래에서 수정하시오 */
@media (max-width: 768px) {
    .overlay-image {
        width: 70px;
        height: 70px;
    }
}

/* PC 화면에서 변경하고 싶으면 아래에서 수정하시오 */
@media (min-width: 768px) {
    .overlay-image {
        width: 80px;
        height: 80px;
    }
}