* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Inter", "Segoe UI", sans-serif;
    background: #ffffff;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-button {
    border: none;
    background: #2d81ff;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 28px;
    border-radius: 16px;
    cursor: pointer;
}

.story-button:active {
    transform: scale(0.98);
}
