html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #696565;
    color: #5e5a5a;
    position:relative;
    margin:0 -1em;
}

.link{
    justify-content: center;
    align-items: center;
    position:relative;
    color:white;
}
.disclosures{
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: rgba(223, 223, 223, 0.66);
    width:520px;
    font-weight:bold;
}
.container {
    width: 520px; /* Fixed width */
    height: 375px; /* Fixed height */
    background-color: white; /* White background for the box */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

input[type="text"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 150px; /* Fixed width for input field */
}

input[type="button"] {
    padding: 8px 16px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

input[type="button"]:hover {
    background-color: #0056b3;
}

#output {
    color: black;
    white-space: pre; /* Preserve whitespace and line breaks */
    font-family: "Courier New", monospace; /* Ensure monospaced font */
    line-height: 20px;
}

h1 {
    color: black;
    margin-bottom: 30px; /* Remove default margin */
}

#logo{
    max-height: 100px;
    position:absolute;
    top:0;
    left:0;
    margin:10px;

}
