:root {
    --wrapper-height: 100vh;
    --font-family: Inter Variable, Inter, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    margin: 0;
    font-size: large;
}

.wrapper {
    min-height: var(--wrapper-height);
    display: grid;
    place-items: center;
    margin: 0;
    padding: 2rem;
    background: #fef1f0;
}

.assertionWrap {
    background: repeating-linear-gradient(-45deg, #fef1f0 10px, #fcc9c599 11px, #fef1f0 12px, #fef1f0 35px);
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3vw 10vw;
    width: 80vw;
    color: #333333;
    background-color: white;
    border-radius: 0.5rem;
    filter: drop-shadow(0.5rem 0.5rem 0.5rem #e2d8d5);
    margin-bottom: 1rem;
}

img,
object {
    max-width: 25vw;
    margin: 1rem;
}

pre {
    text-align: left;
    border: 1px solid #e2d8d5;
    background: #f4eeec;
    width: 100%;
    font-size: small;
    padding: 1rem;
    color: #333333;
    margin-top: 0;
    margin-bottom: 1rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

textarea {
    text-align: center;
    border: 1px solid #e2d8d5;
    background: #f4eeec;
    font-size: small;
    color: #333333;
    width: 100%;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    height: 2.5em;
    line-height: 2em;
    resize: none;
    border-radius: 0.5rem;
}

header {
    background-color: black;
    padding: 1rem;
    width: 100vw;
    text-align: left;
}

button {
    background: none;
    border: none;
    line-height: 2em;
    cursor: pointer;
}

button img {
    margin: 0;
    height: 1.5em;
    margin-bottom: -0.25em;
}

.share {
    text-align: center;
}

details {
    width: 100%;
    margin-top: 1rem;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

summary {
    width: 100%;
    font-size: small;
    font-weight: bold;
    color: white;
    background-color: black;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

details:open>summary {
    border-top-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

a:link,
a:visited,
a:hover {
    color: #004099;
}

footer {
    background-color: black;
    padding: 1rem;
    width: 100vw;
    text-align: left;
    padding: 2rem;
    color: #e2d8d5;
    display: flex;
    flex-direction: row;
    line-height: 2rem;
}

footer a:link,
footer a:visited,
footer a:hover {
    text-decoration: none;
    font-weight: bold;
    color: #f4eeec;
}

footer img {
    height: 2rem;
    margin: 0;
    padding-right: 1rem;
}

header a:link,
header a:visited,
header a:hover {
    text-decoration: none;
}

img.logo {
    max-width: 5rem;
}