.top-container {
    height: 25vh;
    position: relative;
    overflow: hidden;
}

.top-container img {
    width: 120%;
    height: 40vh;
    object-fit: cover;
    object-position: center;
    transform: scale(0.9);
    animation: scaleUp 1s ease forwards; /* 1초동안 축소 애니메이션 */
    margin-left: -10%; /* 중앙 정렬을 위해 마진 조정 */
    margin-top: -4%;
}

.top-container::after {
    content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.3); /* 투명도 조절 */
} 


.top-title-container {
    position: absolute;  /* 추가 */
    top: 0;             /* 추가 */
    left: 0;            /* 추가 */
    right: 0;           /* 추가 */
    max-width: 1430px;
    margin: 0 auto;
    height: 100%;
    padding-left: 30px;
    z-index: 2;         /* 추가 */

}

.top-title {
    position: absolute;
    bottom:5%;
    transform: translateY(-50%);
    z-index: 2;
}

.top-title span {
    font-size: 3rem;
    color: white;
    font-weight: bolder;
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
    }
    to {
        transform: scale(1);
    }
}


@media (max-width: 1025px) {
    .top-container {
        height: 25vh;
    }

    .top-title span {
        font-size: 2rem;
    }
    
}

@media (max-width: 576px) {
    .top-container {
        height: 25vh;
    }
}