@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

* {
    user-select: none;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    justify-content: center;
    align-items: center;
    background-color: #f8f8f8;
    font-family: "Roboto Mono", monospace;
    color: #2b2b2b;
}

.vbox-container {
    padding: 30px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

input {
    padding: 10px;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: none;
    margin: 10px 0px;
    outline: none;
}

button {
    width: 100%;
    border-radius: none;
    border: 1px solid #ccc;
    background-color: white;
    padding: 10px;
}

button:hover {
    background-color: #ccc;
}

.c-buttons {
    display: flex;
    gap: 5px;
}