.scrollbox {
    margin-left: auto;
    margin-right: auto;
    max-width: 350px;
    height: 190px;
    overflow-y: scroll;
    border-top: 2px solid rgb(0, 0, 0);
    border-left: 2px solid rgb(0, 0, 0);
    border-right: 2px solid rgb(0, 0, 0);
    border-bottom: 2px solid rgb(0, 0, 0);
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 0.8fr;
    gap: 10px 10px;
    grid-auto-flow: row;
    grid-template-areas: ". .";
    margin-bottom: 10px;
}

.ebutton {
    font-family: "basiic";
    background: rgba(255, 255, 255, 1);
    border-top: 5px double rgb(0, 0, 0);
    border-left: 5px double rgb(0, 0, 0);
    border-right: 5px double rgb(0, 0, 0);
    border-bottom: 5px double rgb(0, 0, 0);
    margin-top: 10px;
    cursor: url("/cursors/cosmica/default.png"), auto;
    width: 190px;
}

.ebutton:hover {
    filter: invert(1);
}

.log {
    min-width: 190px;
    height: 260px;
    overflow-y: scroll;
    border-top: 2px solid rgb(0, 0, 0);
    border-left: 2px solid rgb(0, 0, 0);
    border-right: 2px solid rgb(0, 0, 0);
    border-bottom: 2px solid rgb(0, 0, 0);
    margin-top: 10px;
    margin-left: 25px;
}

#puppy {
    margin-top: 15px;
    margin-left: 50px;
}

@media (max-width: 600px) {
    .container {
        display: grid;
        grid-template-columns: 0.4fr;
        grid-template-rows: 0.9fr 0.9fr;
        gap: 10px 10px;
        grid-template-areas:
            "."
            ".";
        justify-content: center;
        align-content: center;
    }
    .log {
        margin-left: 0;
    }
}
