.main-header {
    width: 100%;
    height: 10%;
    /* 헤더의 높이 */
    display: flex;
    justify-content: center;
    /* 내부 컨텐츠를 수평 중앙 정렬 */
    align-items: center;
    /* 내부 컨텐츠를 수직 중앙 정렬 */
    box-sizing: border-box;
}

.main-header-content {
    width: 1100px;
    max-width: 1500px;
    /* 최대 너비 설정 */
    display: flex;
    align-items: center;
    /* 내부 요소 수직 중앙 정렬 */
    margin: 0 auto;
}

.header-logo img {
    width: 200px;
    /* 가로 비율을 유지하며 높이에 맞게 조정 */
    left: 0;
}

.header-logo a {
    display: inline-block;
    height: 100%;
}

.bottomButton {
    display: flex;
    width: 100%;
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
}
.confirmAlert{
    height: 45px;
    width: 100%;
    background-color: #fff;
    cursor: pointer;
    color:#212121;
    border: none;
    border-top: 1px solid #414141;
}
.confirmAlert:hover{
    background-color: #fff;
}
@media (max-width: 460px) {
    .main-header{
        height: 5%;
    }
    .header-logo img{
        width: 140px;
        margin-left: 10px;
    }
}
