* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  width: 100%;
  height: 80px;
  background: linear-gradient(45deg, #ff7e5f, #feb47b);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 25px;
}

.logo img {
  height: 140px;
  width: auto;
}
/* Container for button and image */
.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.pdf-image {
  width: 50%;
  border: 1px solid black;
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 10px;
    align-items: flex-start;
  }

  .logo img {
    height: 80px;
    margin-bottom: 10px;
  }

  .container {
    margin-top: 10px;
    padding: 0 10px;
  }

  .pdf-image {
    width: 90%; /* Make it more flexible on small screens */
  }
}
