* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    padding-bottom: 80px;
}

bottom-nav {
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    background-color: white;
    align-items: center;
    position: fixed;
    display: flex;
    height: 70px; /* 기존 50px에서 증가 알아서 수정 */
    bottom: 0px;
    width: 100%;
    font-size: 16px;
    font-family: arial;
    left: 0px;
    justify-content: space-evenly;
}

bottom-nav>a {
    height: 100%; /* 높이에 맞게 설정 */
    text-decoration: none;
    text-align: center;
    color: #aaaaaa;
    font-weight: 700;
    flex: 1 0;
    display: flex;
    align-items: center; /* 세로 중앙 정렬 */
    justify-content: center; /* 가로 중앙 정렬 */
}


.oauth-buttons>a {
    text-decoration: none;
}