* {
    box-sizing: border-box;
}
html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
}
.main {
  background: url(pick.png) no-repeat;
  background-position: 84% center;
  background-size: 600px;
  cursor: pointer;
  background-color: #f9f9f9;
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.info {
  padding: 20px;
  width: 610px;
  border-radius: 30px;
  backdrop-filter: blur(8px) saturate(100%);
  -webkit-backdrop-filter: blur(6px) saturate(100%);
  background-color: rgb(249 249 249 / 80%);
}
.text {
  margin-bottom: 100px;
  margin-left: 20%;
  border-radius: 15px;
  overflow: hidden;
  font-family: Poppins;
  font-size: 32px;
  color: #31384b;
  padding: 15px;
}

.cta {
  max-width: 440px;
  padding-left: 20%;
}

.cta img {
  width: 100%;
  transition: 0.3s;
}

.cta img:hover {
  opacity: 0.6;
}

@media (max-width: 1268px) {
  .main {
    background-size: 500px;
  }
  .info {
    width: 570px;
  }
  .text {
    font-size: 28px;
  }
}

@media (max-width: 920px) {
  .main {
    background-size: 380px;
  }
  .info {
    width: 430px;
  }
}
@media (max-width: 600px) {
  .main {
    background-size: 90%;
    background-position: top center;
    min-height: 680px;
    justify-content: flex-end;
  }

  .info {
    justify-content: center;
    width: 100%;
  }

  .text {
    margin-bottom: -20px;
    margin: 0;
    border-radius: 0;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .cta {
    width: 100%;
    max-width: 400px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }
  .cta a {
    text-align: center;
  }

  .cta img {
    text-align: center;
  }
}
