
body {
    margin: 0;
    padding: 0;
}

/* 배경 컨테이너 */
#backgroundContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* 가장 뒤로 이동 */
    overflow: hidden; /* 이미지가 컨테이너를 벗어나지 않도록 설정 */
    background-color: #ffffff; /* 기본 배경색 */
}

/* 랜덤으로 배치될 이미지 */
.background-image {
    position: absolute; /* 랜덤 배치 */
    width: 150px; /* 이미지 크기 */
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8; /* 투명도 조정 */
}

/* 다른 컴포넌트 스타일 (예제용) */
.content {
    position: relative;
    z-index: 1; /* 배경 위로 표시 */
    padding: 20px;
    font-size: 24px;
}

