body {
    background-color: #1460D2;
    font-family: monospace;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.screen {
    width: 100%;
    height: 100%;
    position: relative;
}

.header {
    color: #00ffff;
    background-color: #1460D2;
    text-align: left;
    padding: 5px 10px;
    border-bottom: 1px solid #00ffff;
    font-weight: bold;
}

.dialog {
    background-color: #c0c0c0;
    color: black;
    width: 300px;
    margin: 100px auto;
    padding: 10px;
    border: 2px solid white;
    box-shadow: 10px 10px black;
    text-align: center;
}

.dialog-title {
    color: #1460D2;
    font-weight: bold;
    margin-bottom: 10px;
}

.dialog-content {
    margin: 10px 0;
}

.dialog-footer {
    margin-top: 10px;
}

button {
    font-family: monospace;
    background-color: #1460D2;
    color: #fff;
    padding: 0px 0px;
    border: none;
    display: inline-block;
    cursor: pointer;
}

button:hover {
    font-family: monospace;
    background-color: #1460D2;
    color: #00ff0d;
    padding: 0px 0px;
    border: none;
    display: inline-block;
}

a {
    color: #1460D2;
    text-decoration: none;
}
