* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Popins', sans-serif;
}
.container {
  background-image: url('./img/letitbe.jpeg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  min-height: 100vh;
  padding: 15px;
}
.menu-bar {
  display: flex;
  justify-content:flex-start;
  width: 100%;
  border-radius: 20px;
}
.logo {
  margin-right: 60px;
}
.logo h3 {
  padding: 20px;
  color: navy;
  font-weight: bold;
  font-family: Copperplate;
  font-size: 36px;
  cursor: wait;
}
ul li {
  display: inline-block;
  padding: 30px;
  font-size: 18px;
}
li a {
  color: navy;
  text-decoration: none;
  font-weight: bold;
}
li a:hover {
  text-decoration: underline;
  font-style: italic;
}
.info img {
  width: 100px;
  background-color: transparent;
}
.box {
  display: flex;
  margin-top: 50px;
  align-items: center;
}
.text {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
  max-width: 400px;
  background-color: rgba(255, 208, 215, 0.9);
  border-radius: 20px;
  padding: 20px;
}
.intro h3 {
  padding-top: 15px;
  padding-bottom: 15px;
  color: rgb(53, 38, 32);
  font-family: fantasy;
  font-weight: bold;
  font-size: 25px;
  cursor: pointer;
}
.intro p {
  line-height: 25px;
  color: navy;
  padding-bottom: 15px;
  cursor: pointer;
}
.button button {
  border: none;
  padding: 20px;
  font-size: 18px;
  border-radius: 10px;
  background-color:azure;
}
.button button a {
  text-decoration: none;
  color: green;
  font-family: Copperplate;
}
.button button:hover {
  background-color: yellow;
}
.button button a::before {
  padding-right: 10px;
}
.button button a:hover {
  font-style: italic;
  color: dodgerblue;
}
.benefit {
  margin-left: 20px;
  max-width: 440px;
  background-color: rgba(255, 208, 215, 0.9);
  border-radius: 20px;
  padding: 20px;
}
.benefit p {
  padding-bottom: 15px;
  color: navy;
  cursor: pointer;
}
.benefit p::before {
  padding-right: 10px;
}
.benefit p:hover {
  font-style: italic;
  font-weight: bold;
}

@media (max-width: 768px) {
  .menu-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  ul li {
    display: block;
    padding: 10px 20px;
  }

  .box {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .text, .benefit {
    max-width: 100%;
    margin-left: 0;
  }

  .logo h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .logo h3 {
    font-size: 24px;
  }

  .intro h3 {
    font-size: 20px;
  }

  .button button {
    width: 100%;
    padding: 15px;
  }

  .container {
    padding: 10px;
    background-size: cover;
  }
}
