body {
    font-family: 'Helvetica', Helvetica, sans-serif;
    letter-spacing: 1px;
    background-color: #333;
    font-weight: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

h2{
    font-family: 'Redaction', monospace; 
    font-size: 36px;
    font-weight: 350;
    line-height: 0;
 }

#main-contents{
    width: 100%;
    max-width: 920px;
    margin-left: 2%;
    margin-right: 2%;

    display: flex;
    flex-direction: column;
    gap: 32px;
}

#answer-container {
    padding: 0 44px;
    min-height: fit-content;
    font-family: 'Redaction', monospace;
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    pointer-events: none;
    z-index: 5;
    white-space: pre-wrap;
}

.chat-container {
    width: 100%;
    max-width: 920px;
}

.statement {
    position: fixed;   
    bottom: 20px;
    right: 20px;
    text-align: right; 
    z-index: 10;
}
  
.small{
    font-size: 10px;
}

#infoLink{
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: 'Helvetica', Helvetica, sans-serif;
    font-weight: 200;
    color: #f5f5f5;
}

#infoLink:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
    font-style: italic;
    color: #f5f5f5;
}

#promptInput {
    width: 100%;
    min-height: 50px;
    padding: 24px;
    border-radius: 24px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    font-family: 'Helvetica', Helvetica, sans-serif;
    color: #111;
    background-color: #111;
    caret-color: white;
    overflow-y: auto;
    line-height: 1.2;
    position: relative;
}

[contenteditable]:empty:before {
    content: attr(placeholder);
    color: #919191;
    cursor: text;
    display: inline-block;
    position: absolute;
}

.chip {
    font-family: 'Helvetica', Helvetica, sans-serif;
    font-weight: 200;
    display: inline-block;
    background-color: #F5F5F5;
    border: 0.5px solid #111;
    color: #333;
    padding: 4px 8px;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 12px;
    font-size: 16px;
    vertical-align: middle;
}

.controls {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

button {
    padding: 12px 12px;
    background-color: white;
    color: #111;
    border: 0.5px solid #111;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 200;
    font-size: 16px;
    font-family: 'Helvetica', Helvetica, sans-serif;
    letter-spacing: 1px;
}

button:hover {
    background-color: #f9f9f9;
}

#clearBtn {
    display: none;
    margin-right: auto;
}

#bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    
    width: 100vw;
    height: 100vh;
    
    object-fit: cover;
    
    filter:contrast(110%);
    z-index: -1;

    background: url('images/video_draft-7.gif') no-repeat center center;
    background-size: cover;
}

::selection {
    color: #111;
    background: #222;
  }

.caret {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background-color: #f5f5f5;
    margin-left: 4px;
    vertical-align: middle;
}

.blink {
    animation: blink-animation 0.8s step-end infinite;
}

@keyframes blink-animation {
    50% { opacity: 0; }
}

.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    color: #f5f5f5;
    border-radius: 4px;
    max-width: 600px;
    width: 100%;
    text-align: left;
    line-height: 1.6;
}

.modal-box {
    background-color: #111;
    color: #f5f5f5;
    padding: 24px;
    border-radius: 4px;
    max-width: 600px;
    width: 90%;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
}

.close-button {
    background: none;
    border: none;
    color: #aaa;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.close-button:hover{
    background-color: #111;
    color: white;
}

.modal-open {
    display: flex !important;
}

  /* unvisited link */
  a:link {
    color: #829DFF;
    text-decoration: none;
  }
  
  /* visited link */
  a:visited {
    color: #829DFF;
    text-decoration: none;
  }
  
  /* mouse over link */
  a:hover {
    color: #829DFF;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-style: italic;
  }
  
  /* selected link */
  a:active {
    color: #829DFF;
    text-decoration: none;
  }

/*Redaction typeface designed for the Redaction project by Titus Kaphar and Reginald Dwayne Betts*/
@font-face {
    font-family: 'Redaction';
    src: url('fonts/Redaction_35-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Redaction';
    src: url('fonts/Redaction_35-Italic.woff2') format('woff2');
    font-weight: 350;
    font-style: normal;
}

@font-face {
    font-family: 'Redaction';
    src: url('fonts/Redaction_35-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}