.heading-h1 {
    overflow: hidden;
    text-align: center;
}
.heading-h1:before,
.heading-h1:after {
    background-color: #3e5824;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 10%;
}
.heading-h1:before {
    right: 0.5em;
    margin-left: -50%;
}
.heading-h1:after {
    left: 0.5em;
    margin-right: -50%;
}
.mod-login-logout__login-greeting.login-greeting {
    color: #fff;
    padding-bottom: 10px;
}
.colors p
{
  font-size: 0.95em;
  font-weight: 300;
  line-height: 1.5em;
  color: #5d5e5f;
  letter-spacing: 1px;
  padding-bottom: 20px;
}

.colors h2 {
  padding-bottom: 20px;
}
.color-box {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
}
.color-box:hover::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  animation: outline 1s infinite alternate;
}

.color-box .copy-text {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  font-size: 12px;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.color-box:hover .copy-text {
  opacity: 1;
  color: #ffffff;
}

@keyframes outline {
  0% {
    border: 2px solid rgba(255, 255, 255, 0.7);
  }
  100% {
    border: 2px solid rgba(255, 255, 255, 0);
  }
}

.color-title {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translate(-50%, -50%);
  margin: 0;
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.colors p {
  margin-bottom: 0;
  font-size: 18px;
  color: #232323;
  text-align: center;
  font-weight: 500;
}

span.copied {
    font-size: 14px;
    background: #212121;
    padding: 2px 8px;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    bottom: 4px;
}