@charset "utf-8";

@font-face {
    font-family: 'Programma';
    font-weight: bold;
    src: url('fonts/Programma-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Valkyrie';
    font-style: normal;
    font-weight: normal;
    src: url('fonts/valkyrie_a_regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Valkyrie';
    font-style: normal;
    font-weight: bold;
    src: url('fonts/valkyrie_a_bold.woff2') format('woff2');
}

:root {
    --border-radius: 10px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    border-radius: var(--border-radius);
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #969696;
    font-family: Valkyrie, Palatino, "Palatino Linotype", serif;
    background-color: #bfb6a7;
}

img {
    width: 800px;
    min-width: 0px;
    max-width: 100%;
}

.flex-aligner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#create-panel {
    width:100%;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #bfb6a7;
}

#buttons {
    display: inline;
}

button, a.link-button {
    border: 0.1;
    margin: 0em;
    padding-block: 1px;
    padding-inline: 6px;
    border-width: 2px;
    border-style: outset;
    border-color: buttonborder;
    background-color: buttonface;
}

button:hover, a.link-button:hover {
    background-color: #d9d1c6;
    cursor: pointer;
}

.hidden {
    display: none !important;
}

textarea{
    width: 100%;
    min-height:5lh;
    max-width: 100vw;
}

#content {
    padding: 12px;
    max-width: 100vw;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width:  100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#modal {
    background-color: #ffefd4;
    padding: 12px;
    border-width: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    pointer-events: all;
}

#bookmarklet-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    p {
        margin: 0;
    }
}

#link-name-section{
    width: 100%;
    display: flex;
    flex-direction:row;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

#paste-content {
    max-width: 100%;
    background-color: #ffefd4;
    padding: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    white-space: pre-wrap;
    word-wrap: break-word; /* optional, helps with long words */
}