/* 전체 배경 설정 */
body {
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100vh;
    background-color: #f0f0f0;
    z-index: 0;
}

/* 코너 삼각형 배치 */
.corner-triangle {
    position: absolute;
    width: 0;
    height: 0;
    z-index: -1;
    /* 삼각형을 뒤로 보냅니다 */
}

/* 좌측 상단 노란색 삼각형 */
.top-left {
    top: 0;
    left: 0;
    border-top: 160px solid yellow;
    /* 세로 높이 */
    border-right: 240px solid transparent;
    /* 가로 너비 */
}

/* 우측 상단 빨간색 삼각형 */
.top-right {
    top: 0;
    right: 0;
    border-top: 240px solid red;
    /* 세로 높이 */
    border-left: 160px solid transparent;
    /* 가로 너비 */
}

/* 좌측 하단 녹색 삼각형 */
.bottom-left {
    bottom: 0;
    left: 0;
    border-bottom: 240px solid green;
    /* 세로 높이 */
    border-right: 160px solid transparent;
    /* 가로 너비 */
}

/* 우측 하단 파란색 삼각형 */
.bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 160px solid blue;
    /* 세로 높이 */
    border-left: 240px solid transparent;
    /* 가로 너비 */
}

/* 상단 배너 이미지 */
.banner {
    width: 90%;
    text-align: left;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    /* 배너를 앞으로 가져옵니다 */
}

.banner img {
    width: 100%;
    height: auto;
}

/* 메뉴 스타일 */
.menu {
    background-color: transparent;
        /* #333; */
    overflow: hidden;
    text-align: center;
    position: relative;
    z-index: 1;
    /* 메뉴를 앞으로 가져옵니다 */
}

.menu a {
    display: inline-block;
    background-color: #aaa;
    color: #f2f2f2;
    text-align: center;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.menu a:hover {
    background-color: #ddd;
    color: black;
}

.menu-icon {
    height: 28px;
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 5px;
}

/* 콘텐츠 영역 */
.content {
    padding-top: 0px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 200px;
    /* 하단 배너 높이만큼 패딩 추가 */
}

/* 하단 배너 및 버튼 */
.footer {
    position: fixed;
    bottom: 10px;
    width: 50%;
    left: 20px;
    text-align: right;
    z-index: 1;
    /* 배너를 앞으로 가져옵니다 */
}

.footer img {
    width: 100%;
    height: auto;
}

.footer button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}