body {
    margin: 0;
}
.row {
    width: 100%;
    display: flex;
    flex-direction: row;
}
.box {
    width: 100%;
    min-width: 50px;
    min-height: 50px;
    border: solid white;
    border-radius: 10px;
    display: grid;
    justify-content: center;
}
p {
    width: fit-content;
    color: black;
    padding: 0 5px;
    font: 850 17px sans-serif;
    background-color: rgba(255, 255, 255, 0.326);
}
button {
    border: 0;
    font-size: larger;
    background-color: dodgerblue;
    color: white;
    margin: auto;
    display: grid;
}