.footer { display: flex; justify-content: space-between; /* 항목들을 양 끝에 정렬하고 사이에 공간을 둡니다 */ align-items: center; /* 항목들을 세로 축 중앙에 정렬합니다 */ padding: 30px 50px 30px 50px; /* 상단과 하단에 여백을 추가합니다 */ background-color: #51e6ef; /* 배경색 설정 */ } #footer_text { font-size: small; color: white; text-align: center; margin: 40px 0 0 0; } .footer div, .footer ul { display: flex; align-items: center; /* 세로 축 중앙 정렬 */ } .footer ul { list-style-type: none; /* 목록 기호 제거 */ padding: 0; /* 내부 여백 제거 */ } .footer ul li { margin: 0 10px; /* 항목 사이의 여백 */ } .footer ul li a { text-decoration: none; /* 링크 밑줄 제거 */ color: white; /* 링크 색상 */ font-size: 16px; /* 폰트 크기 */ }