
@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
}

a {
    text-decoration: none;
    color: white;

}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(255, 194, 204);
    padding: 8px 24px;
}

.navbar__logo {
    font-size: 30px;
    font-family: 'GmarketSansMedium';
    color: white;
}

.navbar__icons li a img {
    width: 40px; /* 조절하고자 하는 크기로 변경 */
    height: 40px; /* 조절하고자 하는 크기로 변경 */
    filter: invert(100%); /* 검은색을 흰색으로 변경 */
}

.navbar__menu {
    font-family: 'GmarketSansMedium';
    font-size: 20px;
    display: flex;
    list-style: none;
    padding-left: 0;
}

.navbar__menu li {
    padding: 8px 12px;
}
.navbar__menu li:hover {
    background-color: rgb(247, 206, 213);
    border-radius: 10px;
}

.navbar__icons {
    list-style: none;
    padding-left: 0;
    color: white;
    display: flex;
    padding: 0%;
}

.navbar__icons li {
    padding: 8px 12px;
}

.navbar__toogleBtn {
    display: none;
    position: absolute;
    right: 16px;
    font-size: 34px;
}

/* Add this CSS in your main.css file or in a style tag in the head of your HTML document */

@media screen and (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 4px;
    }
    .navbar__menu {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .navbar__menu li {
        width: 100%;
        text-align: center;
    }

    .navbar__icons {
        display: none;
        margin-top: auto;
        order: 1;
    }
    .navbar.active .navbar__icons { /* active 클래스가 추가되면 보이게 함 */
        display: flex;
    }
    .navbar__toogleBtn {
        display: block;
    }

    .navbar__menu.active,
    .navbar__icons.active {
        display: flex;
    }

    
}


.container {
    display: flex;
    justify-content: center; /* 이미지를 가로 방향으로 중앙 정렬 */
    align-items: center; /* 이미지를 세로 방향으로 중앙 정렬 */
    height: calc(100% - 70px); /* 전체 높이에서 네비게이션 바의 높이(예시로 든 값)를 뺀 만큼의 높이 설정 */
}

.container img {
    max-width: 100%; 
    max-height: 100%; 
}

