







/* 🟦 페이지 하단 정보 */
footer {
    clear: both; /* 요소 새롭게 배치 가능 */

    background-color: #b6d3b1; /* Footer의 배경색을 설정합니다. */
    width: 100%;
    
    padding: 30px 0; /* Fooer의 상하 여백을 설정합니다. */
    text-align: center; /* 내용을 가운데로 정렬합니다. */
}


.footer-content img {
    width: 300px;

}

.footer-content p {
    font-size: 1.2em; /* 단락의 폰트 크기를 설정합니다. */
    margin: 10px 0; /* 단락 간격을 설정합니다. */
}


.footer-SNS img {
    width: 70px; /* 이미지 가로 설정 */
    height: 70px; /* 이미지 세로 설정 */
    margin: 5px;
    object-fit: cover; /* 이미지를 잘라서 맞춤 */
}


