html,
body {
    margin: 0;
    height: 100vh;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        "Adwaita Sans",
        Roboto,
        Helvetica,
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";
    font-size: 115%;
    line-height: 1.4;
}

#container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#box {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.part {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1em;
    padding: 1em 2em;

}

p {
    max-width: 40em;
    display: block;
}

h1 {
    font-size: 1.4em;
    margin: 0 1em 0 0;
}

.link-group {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 0.5em;
    font-size: 80%;
    font-style: italic;
}

.link-group img {
    filter: drop-shadow(0 1px 2px #000000d0);
}

a {
    text-decoration: none;
    color: #546E7A;
}

a:hover {
    text-decoration: underline;
    color: #E53935;
}