#around {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
}

#orange {
    color: orange;
}

.box {
    display: flex;
    background-color: rgb(88, 88, 88);
    width: 250px;
    padding: 40px;
    padding-top: 10px;
    margin: 10px;
    border-radius: 10px;
    color: white;
}

.content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
}