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

header {
  background: #ffffff;
  color: #000000;
  padding: 10px;
  position: fixed;
  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: 95px;
  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: 16px;
  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%; }
}

/*footer {
  position: reltive;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  padding: 20px 0;
  background: #242527;
  color: white;
  
}*/

footer .text-left {
 text-align: left;
}

footer .text-right {
 text-align: right;
}

footer {
  background: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10%;
  margin-top: 60px;
}

footer form {
  display: flex;
  gap: 10px;
}

footer input {
  padding: 10px;
  border-radius: 20px;
  border: none;
  width: 180px;
}

footer button {
  padding: 10px 16px;
  border-radius: 20px;
  border: none;
  background: #f2a65a;
  cursor: pointer;
  color: black;
}

footer span {
  color: black;
}

.submit {
  background: #f2a65a;
  padding: 10px 16px;
  border-radius: 20px;
  color: #000;
  text-decoration: none;
}

