.boxed {
    border: 2px solid #000; /* Adds a border around the element */
    padding: 10px; /* Adds space inside the border */
    border-radius: 5px; /* Rounds the corners of the border */
    background-color: #f9f9f9; /* Adds a background color */
    display: inline-block; /* Makes the box fit the content */
}


.centered-boxed {
    border: 2px solid #000; /* Adds a border around the element */
    padding: 10px; /* Adds space inside the border */
    border-radius: 5px; /* Rounds the corners of the border */
    background-color: #f9f9f9; /* Adds a background color */
    justify-content: center;
    display: flex;
    align-items: center;
}