
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000; /* Black background for a terminal look */
    color: #00ff00; /* Green text */
    height: 100vh; /* Ensure body fills the viewport */
}

#terminal {
    width: 100%; /* Full width of the screen */
    height: 100%; /* Full height of the screen */
    display: flex;
    flex-direction: column;
}


body {
    background: black;
}
.trinity-dialog {
    margin-top:-40px;
    --size: 1.4;
    --background: black;
    --color: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--color);
    background: var(--background);
    width: 800px;
    height: 75vh;
    min-height: 100px;
    min-width: 250px;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 40px);
    z-index: 100;
    resize: both;
    overflow: auto;
}
.trinity-dialog .body {
    width: 100%;
    height: calc(100% - 28px);
}
.trinity-dialog, .trinity-dialog header .title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.trinity-dialog header .title {
    margin-top: -2px;
    background: var(--color);
    padding: 1px 10px;
    color:#051480;
}
.trinity-dialog header {
    background: var(--color);
    position: relative;
}
.trinity-dialog header::before {
    content: "";
    display: block;
    position: absolute;
    left: 55px;
    top: 5px;
    right: 10px;
    width: calc(100% - 55px - 5px);
    height: 15px;
    background: #000;
}
.trinity-dialog header .title::before {
    content: "[ ";
}
.trinity-dialog header .title::after {
    content: " ]";
}
.trinity-dialog header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
}
.trinity-dialog header li {
    display: inline-block;
    margin: 3px;
    width: 14px;
    height: 14px;
    border: 2px solid var(--background);
}


.terminal img {
    max-width: 50%;
}

.footer {
    width: 100%; /* Ensure the footer spans the full width */
    height: 150px; /* Optional: Define a footer height if needed */
    position: fixed; /* Ensure it's fixed to the bottom */
    bottom: 0;
    display: flex; /* Use Flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    background-color: #000; /* Optional: Add a background color for visibility */
}

#logo {
    max-height: 100px;
    max-width: 100%; /* Optional: Constrain the logo width */
    display: block;
}

#auth {
    color: #fff;
    display: block;
    font-size: 0.7em;
}