.middleUI {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

input::placeholder {
    color: lightgray !important;
    font-style: italic;
}

body{
    font-family: 'Roboto', sans-serif;
}

.font15{
    font-size: 15px;
}

.form-group {
    width: 400px;
    margin: 0 auto; /* 가운데 정렬을 위해 추가 */
    text-align: left; /* 내용을 왼쪽 정렬로 설정 */
    margin-bottom: 15px; /* 아래 여백 추가 */
}

.nav-link{
    color: black;
}
.active{
    text-decoration: underline;
    color: black !important;
    background: white !important;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-box {
    flex: 1;
    min-width: 280px;
    max-width: 600px;
}

.contact-box img {
    width: 30px;
    margin-top: -5px;
}

.contact-box h5 {
    display: inline-block;
    margin-left: 10px;
    font-size: 18px; /* 제목 크기 */
}

.contact-box p {
    margin: 5px 0;
    font-size: 16px; /* 본문 기본 크기 */
}

/* 반응형 설정 */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-box {
        width: 100%;
    }

    .contact-box h5 {
        font-size: 14px; /* 모바일에서 제목 크기 축소 */
    }

    .contact-box p {
        font-size: 10px; /* 모바일에서 본문 크기 축소 */
    }


    @media (max-width: 768px) {
        .gallery img {
            max-width: 50%;
        }
        .display-area img {
            width: 100%;
        }
    }

    @media (max-width: 480px) {
        .gallery img {
            max-width: 100%;
        }
        .display-area img {
            width: 100%;
        }
    }
}
