html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111;
    color: #fff;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

#text-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 60vw;
    padding: 24px;
}

#random-text {
    cursor: pointer;
    user-select: none;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.5;
}

#random-text span {
    display: inline-block;
    transform-origin: center center;
    transition: transform 0.25s ease, color 0.25s ease, font-size 0.25s ease, opacity 0.25s ease;
}

#menu-container {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 1000;
}

.menu-item {
    width: 200px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffffc2;
    background-color: transparent;
    border: 0.1px solid #ffffff33;
    font-size: 10px;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 10px;
}

.menu-item:last-child {
    margin-bottom: 0;
}