* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    height: 100%;
    color: white;
    background: black;
    font-size: 16px;
    font-family: system-ui, sans-serif;
}
.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.header-inner {
    padding: 1rem 1rem 0.25rem 1rem;
    width: 100%;
    max-width: 65rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.search {
    font-size: 1rem;
    background: #1b1b1b;
    color: white;
    border: 1px solid #535353;
    border-radius: 0.5rem;
    padding: 0.7rem 1rem;
    width: 100%;
    font-family: system-ui, sans-serif;
}
.menu-button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    background: #1b1b1b;
    color: white;
    border: 1px solid #535353;
    border-radius: 0.5rem;
    padding: 0.4rem;
    font-family: system-ui, sans-serif;
    cursor: pointer;
}
.content {
    display: flex;
    flex-direction: column;
    padding: 0.25rem 1rem 1rem 1rem;
    width: 100%;
    max-width: 65rem;
    gap: 0.5rem;
}
.note {
    background: #1f1e1e;
    border: 1px solid #535353;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
}
.note img {
    max-width: 100%;
}