.button {
  background-color: #388e3c; /* Green */
  border: none;
  color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.button1 {border-radius: 50px;}
.container {
            display: flex;
            justify-content: space-around;
            padding: 30px 30px; /* Adjust padding as needed */
        }
.outer-border {
            border: 2px solid black;
            padding: 10px;
        }
		
.row {
			display:flex;
			flex-direction:row;
			justify-content: center;
		}
.column {
			display:flex;
			flex-direction:column;
			align-items: center;
		}
.colorwhite {
			color:white;
		}
		
.button2 {border-width:2px; border-style:solid;border-color:black;}