
body {
    background-color: #212529 !important;
}

body footer {
	background-color: #000 !important;
}

body header {
	background-color: #000 !important;
}

#typed-strings > p {
    display: inline-block;
    margin: 0;
}

#typed {
    color: #007bff;
    font-weight: bold;
}

#team-contacts {
    background-color: #000 !important; /* 배경색을 검은색으로 설정 */
    color: #fff; /* 글씨색을 흰색으로 설정 */
    padding: 50px 0;
    border-radius: 8px;
}

#contactInfo .card {
    background-color: #333; /* 카드 배경색을 어두운 회색으로 설정 */
    border: none; /* 기본 카드 테두리 제거 */
}

#contactInfo .card-body {
    background-color: #333; /* 카드 내부 배경색도 어두운 회색으로 일치 */
}

.contact-list li a {
    color: #fff; /* 링크 글씨색을 흰색으로 설정 */
    transition: color 0.3s ease; /* 색상 변화에 애니메이션 효과 적용 */
}

.contact-list li a:hover {
    color: #007bff; /* 링크에 마우스를 올렸을 때의 색상 변경 */
}
.contact-item {
    opacity: 0; /* 처음에는 보이지 않도록 설정 */
    transform: translateX(50px); /* 오른쪽에서 시작해 왼쪽으로 이동하도록 설정 */
    transition: opacity 0.5s ease, transform 0.5s ease-out; /* 페이드 인 및 이동에 대한 전환 효과 적용 */
}

.contact-item:hover {
    transform: scale(1.05); /* 항목에 마우스를 올렸을 때 약간 확대 */
}

.contact-link {
    color: #fff;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #007bff; /* 링크에 마우스를 올렸을 때 색상 변경 */
}

#hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

#hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

#hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

#typed-hero-strings p, #typed-hero {
    font-size: 1.5rem;
}