#homegroups {
  display: flex;        /* Flex layout so items have equal height  */
  flex-flow: row wrap;  /* Allow items to wrap into multiple lines */
  justify-content:space-between;
}
.location {
  display: flex;        /* Lay out each item using flex layout */
  flex-flow: column;    /* Lay out item’s contents vertically  */
  flex-grow:20;
  justify-content:space-between;
}
.location > img {
  order: -1;            /* Shift image before other content (in visual order) */
  align-self: center;   /* Center the image cross-wise (horizontally)         */
}
.location > button {
  margin-top: auto;     /* Auto top margin pushes button to bottom */
  justify-content:space-between;
}
.deletelocation {
  display: flex;        /* Lay out each item using flex layout */
  flex-flow: row wrap;    /* Lay out item’s contents vertically  */
  flex-grow:20;
  justify-content:space-between;
}


/*===========================*/
/*Manage Groups*/


.creategroup {
  position: relative;
  background-color: #231f1a;;
  width:100%;
}











#id0 {
	margin-top:20px;
}
<!-- End - Added on 5/24/2021 -->

#banner1 {
  background-color: #0B2858; /* For browsers that do not support gradients */
  color:white;
  margin:0px;
  padding:10px;
}
	
#banner2 {
  height: 25px;
  background-color: skyblue; /* For browsers that do not support gradients */
  background-image: linear-gradient(to right, lightgreen , lightgreen); /* Standard syntax (must be last) */
}
#banner3 {
  height: 25px;
  background-color: skyblue; /* For browsers that do not support gradients */
  background-image: linear-gradient(to right, white , white); /* Standard syntax (must be last) */
}

.button {
  background-color: #E1E1E1;
  border: none;
  color: black;
  padding: 6px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  font-size: 14px;
  margin: 4px 2px;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  cursor: pointer;
}
.button1 {
  background-color: #E1E1E1; 
  color: black; 
  border: 1px solid #4CAF50;
}

.button1:hover {
  background-color: #4CAF50;
  color: white;
}
.button2 {
  background-color: #E1E1E1; 
  color: black; 
  border: 1px solid #4CAF50;
}

.button2:hover {
  background-color: #4CAF50;
  color: white;
}
.button3 {
  background-color: #32cd32; 
  color: black;
  border: 2px solid white;
}
.button4 {
  background-color: #abcdef; 
  color: black; 
  border: 1px solid #4CAF50;
}
 
body {
	background: inherit;
	background-repeat: no-repeat;
	background-size: 100%;
	background-attachment: fixed;
}

h1
{
	color: black;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
}
          
.card111 {
	top: 50%;
	box-shadow: 0 0 5px 0;
	background: inherit;
	backdrop-filter: blur(10px);
	margin: 100px;
	text-align: center;
}



