/* ✅ 전체 페이지 스타일 */
body {
    font-family: "Noto Sans KR", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: white;
}

/* 상단 네비게이션 */
.top-nav {
    position: absolute;
    top: 26px;
    right: 30px;
}

.after-top-nav{
    position: absolute;
    top: 20px;
    right: 30px;
}

.logout-link {
    background-color: transparent;
    color: rgb(83 68 91);
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
    text-decoration: none;
}

.logout-link:hover {
    background-color: #7D5A9E;
    color: white;
}

.nav-link {
    background-color: transparent;
    color: rgb(83 68 91);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
    text-decoration: none;
}

.nav-link:hover {
    background-color: #7D5A9E;
    color: white;
}

/* ✅ 메인 컨텐츠 */
.main-container {
    text-align: center;
}

.logo {
    width: 400px; /* 로고 크기 */
    margin-bottom: 20px;
}

h1 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: left;
}

/* ✅ 버튼 스타일 */
.start-button {
    width: 400px;
    padding: 15px;
    font-size: 18px;
    margin-top: 40px;
    border: none;
    background-color: #f9f9f9;
    color: black;
    cursor: pointer;
    
}

.start-button:hover {
    background-color: #d9d9d9;
}
