* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #2B2B2B;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.box {
    background-color: #3C3C3C;
    border-radius: 20px;
    padding: 20px;
    width: 90%;
    max-width: 1000px;
    height: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ascii-art {
    background-color: #2B2B2B;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-family: monospace;
    white-space: pre;
    line-height: 1.1;
    margin-bottom: 15px;
    display: inline-block;
    text-align: left;
    overflow: auto;
    flex-grow: 1;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

button {
    background-color: #FF5733;
    border: none;
    border-radius: 10px;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #FF6F4D;
}