body {font-family: Arial, Helvetica, sans-serif; color: #E2E2E2; background-image: url('https://events.tankersleyfoods.com/1mgs/vegetables.jpg'); background-size: 100%;}

.center {
  margin-left: auto;
  margin-right: auto;
}

.container {
  min-height: 100vh; /* minimum height = screen height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.maindiv {
	max-width: 1000px;
	margin: auto;
	background-color: #323332;
	border-radius: 25px;
}

.tagdiv {
	border-top:5px dotted #303030;
	width: 400px;
	margin: auto;
	background-color: #323332;
	border-radius: 0 0 25px 25px;
}

.round-button {
      width: 250px; /* Set width */
      height: 75px; /* Set height (same as width for a perfect circle) */
      border-radius: 30%; /* Makes the button round */
      border: 5px solid; /* Removes border */
      background-color: #1E3C58; /* Button color */
      color: white; /* Text color */
      font-size: 16px; /* Text size */
      cursor: pointer; /* Pointer cursor on hover */
      display: flex; /* Center text */
      align-items: center; /* Center text vertically */
      justify-content: center; /* Center text horizontally */
    }
	
 .round-button:hover {
      background-color: #33597D; /* Slightly darker shade on hover */
    }