  /* Round the cowboy/world app icon */
img[src*="app_icon"]{
  border-radius: 20px;   /* change this number to taste */
}

button#enter {
  display: inline-block;
  background-color: #c0392b;       /* Change to your brand color */
  color: #ffffff !important;
  font-size: 1.4rem !important;
  font-weight: bold !important;
  padding: 16px 48px !important;
  border-radius: 8px !important;
  border: none !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
  cursor: pointer !important;
  margin: 20px 0 !important;
  transition: background 0.2s !important;
}

button#enter:hover {
  background-color: #a93226 !important;
}