@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100..300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Khula:wght@300;400;600;700;800&display=swap');

:root {
    --bgcolor: #FCFCFF;
    --greybg: lightgrey;
    --buttonbg: #161616;
    --buttonhv: #838383;
}

body {
    margin: 0;
    font-family: "JetBrains Mono", monospace;
    font-weight: 300;
    background-color: var(--bgcolor);
    font-size: 12px;
}

h1 {
    font-family: 'Khula'; 
    font-weight: 400;
    font-size: 40px;
    line-height: 120%;
}

h6 {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    margin: 0;
}

a{
    text-decoration: none;
    color: inherit;
}

input {
    border: none;
    border-bottom: 1.5px solid var(--buttonbg);
}

/* elements */
.button {
    background-color: var(--buttonbg);
    color: var(--bgcolor);
    width: fit-content;
    padding: 8px 40px;
    border-radius: 2px;
    font-size: 16px;
    cursor: pointer;
}

.button:hover {
    background-color: var(--buttonhv);
}

.windows {
    cursor: zoom-in;
    background-color: white;
    border-radius: 4px;
    width: 20vw;
    overflow: hidden;
    height: fit-content;
}

.windowspair {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 20px;
}

.windowstitle {
    margin: 4px;
    padding-left: 12px;
    border-left: 1px solid gray;
}

.windowspic {
    background-color: gray;
    height: 160px;
}

.target {
    opacity: 0;
    cursor: default;
    user-select: none;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.documents {
    padding: 8px 12px;
    height: 240px;
    
}

.bottombar {
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

.barbutton {
    margin: 8px;
}

.overlaygrey {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #F7F6F4;
    user-select: none;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.receiptwrap {
    position: fixed;
    background-color: rgba(28,28,28,0.4);
    width: 100%;
    height: 104%;
    display: none;
    justify-content: center;
    align-items: center;
}

.receipt {
    height: 90%;
    margin-top: 1.5%;
}

.cross {
    width: fit-content;
    position: fixed;
    top: 2%;
    right: 32%;
}

/* structure */
.flexwrap {
    display: flex; 
    flex-direction: row; 
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    height: fit-content;
}

.buttonwrap {
    width: 80%; 
    display: flex; 
    justify-content: space-between;
}

.fullscreen {
    position: absolute; 
    top:0; 
    left:0; 
    width: 100%;
}

/* page */
.archive {
    background-color: lightgray;
    overflow: hidden;
}