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

.horizontal-menu {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
}

main, header {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 16px;
}

.noto-serif-regular {
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.noto-serif-bold, .highlight {
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: bold;
    font-variation-settings: "wdth" 100;
}


a {
    text-decoration: none;
    color: grey;
}
a:hover { text-decoration: underline; }

.logo {
    padding-bottom: 0;
    position: relative;
    top: 8px;
    color: rgb(255, 36, 94);
}
.logo a { color: rgb(255, 36, 94); }
.logo a:hover { text-decoration: none; }

.highlight { color: rgb(255, 36, 94); }

.post h1 {
    margin: 10px 0;
    font-size: clamp(1.4rem, 4vw, 2rem);
}
.post p {
    margin: 10px 0;
    font-size: clamp(0.95rem, 2.4vw, 1.05rem);
    line-height: 1.6;
}
.about { margin-bottom: 30px; }
.date { color: grey; padding: 0; margin: 0; }
.post h2 { margin-bottom: 0; }

@media (min-width: 730px) {
    .horizontal-menu { gap: 20px; }
    main, header { padding: 0; }
}
img, video { max-width: 100%; height: auto; display: block; }

.warn {
    padding-top: 20px;
    display: none;
}
.warn button {
    background-color: rgb(255, 36, 94);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
}
blockquote {
    border-left: 4px solid #ff245e;
    margin-left: 0;
    padding-left: 16px;
    color: rgb(71, 71, 71);
}
.post a:hover {
    text-decoration: none;
}
.post a {
    color: black;
}
.tw {
    background-color: #fffbbd;
    padding: 10px;
}