body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    text-align: center;
    padding-top: 20px;
}

.intro-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    color: #333;
    font-size: 24px; /* fortuneTell.html과 동일한 크기로 설정 */
    margin-bottom: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav li {
    margin: 15px 0;
}

.menu-button {
    display: inline-block;
    text-decoration: none;
    background-color: #007BFF; /* 파란색 버튼 */
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.menu-button:hover {
    background-color: #0056b3; /* 더 진한 파란색 */
}
