/* Old Windows / Visual Novel Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&display=swap');

/* Entire page */
body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;

    font-family:
        Tahoma,
        Verdana,
        "MS PGothic",
        "MS UI Gothic",
        sans-serif;

    font-size: 14px;
    color: #8f4f73;

    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.8) 0 8%, transparent 9%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,.5) 0 6%, transparent 7%),
        linear-gradient(
            180deg,
            #fffafc 0%,
            #ffe8f3 30%,
            #ffd6ea 65%,
            #ffeef8 100%
        );

    text-rendering: optimizeLegibility;
}

/* Header */
header {
    text-align: center;
    margin-top: 40px;
}

/* Google-style search box */
.google-box {
    width: 850px;
    max-width: 90%;
    margin: 35px auto;

    background: white;
    border: 1px solid #cfcfcf;

    padding: 30px;

    box-shadow:
        2px 2px 8px rgba(0,0,0,.12);
}

/* Search bar */
.search {
    width: 100%;
    box-sizing: border-box;

    padding: 10px 14px;

    font-size: 15px;

    border: 1px solid #bdbdbd;
    border-radius: 3px;

    font-family:
        Tahoma,
        Verdana,
        sans-serif;

    margin-bottom: 30px;
}

/* Search results */
.result {
    margin-bottom: 28px;
}

.title {
    font-family:
        Georgia,
        serif;

    font-size: 22px;

    color: #003399;
    text-decoration: underline;
}

.url {
    color: #008000;

    font-size: 13px;

    font-family:
        Tahoma,
        sans-serif;

    margin: 3px 0;
}

.result p {
    margin: 0;

    color: #444;

    font-size: 14px;
}

/* Main title */
h1 {
    font-family:
        Georgia,
        "Times New Roman",
        "Sawarabi Mincho",
        serif;

    font-size: 42px;
    font-weight: normal;

    color: #d66a9d;

    text-shadow:
        1px 1px #fff,
        0 0 6px #ffd8eb;

    letter-spacing: 1px;
}

/* Headings */
h2,
h3 {
    font-family:
        Georgia,
        "Times New Roman",
        "Sawarabi Mincho",
        serif;

    font-weight: normal;

    color: #b85f8d;
}

/* Paragraphs */
p {
    font-family:
        Tahoma,
        Verdana,
        "MS PGothic",
        sans-serif;

    font-size: 13px;
    line-height: 1.6;
}

/* Small notes */
small,
.note,
footer {
    font-family:
        Tahoma,
        Verdana,
        sans-serif;

    font-size: 11px;
    color: #b98ca8;
}

/* Links */
a {
    color: #cc5b93;
    text-decoration: underline;
}

a:hover {
    color: #ff5fa9;
    background: rgba(255,255,255,.35);
}