/*body*/
@font-face {
    font-family: 'SejonghospitalBold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2312-1@1.1/SejonghospitalBold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
#background{
    clear: both; /*플로팅 해제 */
    width: 1519px;
    height: 650px;
    display: flex;
    overflow: hidden; /*영역 넘치면 감춤 */
}
#word , #word2 {
    position: absolute;
    z-index: 1;
    color: black;
    text-align: left;
    font-weight: 900;
    text-shadow: 1px 1px white;
    font-family: 'SejonghospitalBold', sans-serif;
}
#word {
    width: 850px;
    height: 80px;
    margin-left: 150px;
    margin-top: 80px;
    font-size: 20px;
}
#word2 {
    width: 650px;
    height: 50px;
    margin-left: 150px;
    margin-top: 160px;
    line-height: 2em;
}
#word , #word2 {
    animation-name: fadeindown;
    animation-duration: 3s;
}
@keyframes fadeindown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#slides {
    clear: both; /*플로팅 해제 */
    width: 1519px;
    height: 650px;
    overflow: hidden; /*영역 넘치면 감춤 */
    position: absolute;
    z-index: 0; /* 기본값을 0으로 설정 */
}
#slides img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
}
.slide {
    width: 100%;
    display: flex;
    animation-name: fade;
    animation-duration: 2s; /*1.5초 동안 애니메이션 지속 */
}
@keyframes fade {
    from {opacity: 0.5}
    to {opacity: 1}
}
#prev, #next {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: 300px;
    border: none;/*테두리 없이 설정*/
    text-align: center;
    border-radius: 50%;
    color: white;/*화살표는 색 검정으로 지정 */
    background-color: rgba(0, 0, 0, 0.5);
    font-weight: bold; /*100 ~ 900까지 설정 클 수록 두꺼움 */
    font-size: 30px;
    z-index: 2;
}
#prev {
    left: 15px;
}
#next {
    right: 15px;
}
#prev:hover, #next:hover{
    background-color: black;
    cursor: pointer;/*포인터 모양을 바꿈 */
}
#customer {
   /* background-color: rgba(255,255,255,0.75);*/
    background-color:rgba(23, 23, 23, 0.65);
    color: white;
    width: 400px;
    height: 135px;
    position: absolute;
    margin-top: 430px;
    margin-left: 1020px;
    text-align: center;
    border-radius: 5px;
}
#customer h3 , #customer_en h3{
    margin-top: 5px;
}
#customer table {
    width: 390px;
    height: 100px;  
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
} 
#customer_en {
    background-color:rgba(23, 23, 23, 0.65);
    color: white;
    width: 420px;
    height: 150px;
    position: absolute;
    margin-top:420px;
    margin-left: 1000px;
    text-align: center;
    border-radius: 5px;
}
#customer_en table {
    width: 400px;
    height: 120px;  
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
} 
#customer_en table th {
    width: 80px;
}
/*footer*/
footer{
    border-top: 2px solid black;
}