 .btn-group2 button {
    background-color: #0e0e0e; /* Green background */
    border: 5px solid #000000; /* Green border */
    font-size: 15px;
	text-align: justify;
	color: #aaaaaa; /* White text */
    padding: 3px 45px; /* Some padding */
    cursor: pointer; /* Pointer/hand icon */
outline: none;
    float: left; /* Float the buttons side by side */
}

/* Clear floats (clearfix hack) */
.btn-group2:after {
    content: "";
    clear: both;
    display: table;
}

.btn-group2 button:not(:last-child) {
    border-right: none; /* Prevent double borders */
}

/* Add a background color on hover */
.btn-group2 button:hover {
    background-color: #242323;
}