body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #5d5d5d;
}

.header {
  padding: 25px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header img {
  width: 240px;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: #5d5d5d;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

nav a:hover {
  color: #55b3ff;
}

.title {
  padding: 60px 70px;
    font-family: monospace;
}

.title p {
  background: #c3ff92;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: bold;
}

.title h1 {
  font-size: 72px;
  margin: 15px 0;
}

.title span {
  font-size: 18px;
}

.drink {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 0 70px;
  margin-bottom: 120px;
}

.img {
  width: 420px;
  height: 420px;
  background: #fffca6;
  border-radius: 25px;
  overflow: hidden;
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text {
  width: 480px;
}

.text p {
  background: #c3ff92;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: bold;
}

.text h2 {
  font-size: 50px;
  margin: 15px 0;
}

.text span {
  display: block;
  font-size: 18px;
  margin-bottom: 20px;
}

.text a {
  margin-right: 30px;
  text-decoration: none;
  font-weight: bold;
  color: #5d5d5d;
}

.text a:hover {
  color: #55b3ff;
}

@media screen and (max-width: 900px) {
  .drink {
    flex-direction: column;
    gap: 30px;
    padding: 0 30px;
  }

  .img,
  .text {
    width: 100%;
  }

  .img {
    height: 350px;
  }

  .title h1 {
    font-size: 48px;
  }
}

.footer {
  background: #5d5d5d;
  color: #ffffff;
  padding: 70px 50px;
  text-align: center;
}

.footer h2 {
  font-size: 46px;
  margin-top: 0;
}

form {
  width: 420px;
  margin: 30px auto 70px;
  display: flex;
  border: 1px solid #ffffff;
  border-radius: 40px;
  overflow: hidden;
}

input {
  width: 85%;
  padding: 16px 22px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 18px;
}



button {
  width: 15%;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 22px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 180px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  color: #c3ff92;
}