@font-face {
    font-family: 'Fixedsys';
    src: url('https://fonts.cdnfonts.com/s/23156/FixedsysRegular.woff') format('woff');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Fixedsys', monospace;
    color: #00FF00; /* Green text color for terminal look */
    background-color: #000000; /* Black background for terminal look */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
}

.crt-container {
    width: 80%;
    max-width: 400px;
    height: 60%;
    max-height: 250px;
    padding: 20px;
    border: 3px solid #7a7a7a;
    border-radius: 10px;
    background-color: #000000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    overflow: hidden;
    color: #00FF00;
    font-size: 18px;
    z-index: 1; /* Ensures the container is above the button */
}

#text {
    white-space: pre-wrap; /* Preserve whitespace and newlines */
    overflow: hidden;
    border-right: 2px solid #00FF00; /* Cursor effect */
    margin: 0;
    line-height: 1.5;
}

.admin-button {
    position: absolute;
    top: 50px;
    right: 50px;
    padding: 10px 20px;
    background-color: #00FF00;
    color: #000000;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Fixedsys', monospace;
    z-index: 2; /* Ensures the button is above the container */
}

.admin-button:hover {
    background-color: #00cc00;
}

.admin-button:active {
    background-color: #009900;
}