@import url("https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Slab&display=swap");
html {
    height: 100%;
    width: 100%;
}

details {
    display: inline-block;
}

details summary::-webkit-details-marker {
    display: none;
}

/*details[open] {
    display: contents;
}*/

details[open] summary {
    display: none;
}

summary {
    display: inline;
    color: #6770eb;
}

/*summary:hover {
    text-decoration: underline;
}*/
body {
    height: 85%;
    width: 95%;
    font-size: 17px;
    line-height: 1.5;
    color: #333;
    background-color: #f0f0f0;
    font-family: "Roboto";
}

a:link {
    text-decoration: none;
    color: #6770eb;
}

a:visited {
    text-decoration: none;
    color: #864ca7;
}

a:hover {
    text-decoration: underline;
}
a:active {
    text-decoration: underline;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #15202b;
        color: #d3d3d3;
    }

    a:link {
        color: #d397ab;
    }

    a:visited {
        color: #aa7089;
    }

    summary {
        color: #d397ab;
    }
}

.hoverunderline:hover {
    text-decoration: underline;
    cursor: pointer;
}

.inlinep {
    display: inline;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.name {
    font-size: 30px;
    margin: 0;
    font-family: "Roboto Slab";
}

.subname {
    font-size: 20px;
    margin: 0;
}

.info {
    max-width: 85%;
    border-bottom: 0;
    margin-top: 1rem;
}

.content {
    width: 100%;
    height: auto;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

.wide {
    width: 85%;
    justify-content: space-between;
}

.pubTitle {
    font-family: "Roboto Slab";
    font-size: 20px;
    margin-top: 2rem;
}

.pubsubTitle {
    font-family: "Roboto Slab";
    font-size: 18px;
}

@media (min-width: 600px) {
    .info {
        max-width: 65%;
    }

    .wide {
        width: 65%;
    }

    body {
        font-size: 19px;
    }

    .name {
        font-size: 40px;
    }

    .subname {
        font-size: 24px;
    }

    .pubTitle {
        font-size: 24px;
    }

    .pubsubTitle {
        font-size: 20px;
    }
}
