body {
  margin: 0;
  font-family: "Lexend";
  background: #D9D9D9;
  color: #000000;
  box-sizing: border-box;
}

header {
  background: #ffffff;
  color: #000000;
  padding: 10px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 5;
}

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.left,
.right {
  flex: 0 1 49%;
  display: flex;
  align-items: center;
}

.left {
  justify-content: flex-start;
}

.right {
  justify-content: flex-end;
  padding-right: 5px;
}

header a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
}

.logo {
  width: 160px;
  vertical-align: middle;
}

.social-media {
  width: 35px;
  vertical-align: middle;
}

.hover-underline {
  position: relative;
  text-decoration: none;
  color: #000000;
  font-weight: 500;
}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: currentColor;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.hover-underline:hover::after {
  transform: scaleX(1);
}

.image-text {
 height: 1rem;
 width: 1rem;
}

.coffee-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
  cursor: pointer;
  user-select: none;
  background: linear-gradient(
    120deg,
    #FFDD00,
    #FFE866,
    #FFC83D,
    #FFB703
  );
  background-size: 300% 300%;
  animation: coffeeGlow 12s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.coffee-button img {
  width: 45px;
}

.coffee-button:hover {
  transform: scale(1.1);
}

@keyframes coffeeGlow {
  0% { background-position: 0% 50% }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hidden { display: none !important; }

@media (max-width: 992px) { nav { display: none; } }

