body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
  background-image: url("./2.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
}

main {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 30px;
  width: 70%;
  display: flex;
  justify-content: space-around;
  font-size: clamp(14px, calc(0.875rem + ((1vw - 7.51px) * 0.8554)), 24px);
  backdrop-filter: blur(13px);
  background-color: rgba(255, 255, 255, 0.59);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.choice {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.choice__elem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.imgs {
  height: 760px;
}

img {
  height: 100%;
}

p {
  color: rgb(27, 35, 78);
}

#generalInformation {
 font-size: clamp(14px, calc(0.875rem + ((1vw - 3.5px) * 0.6369)), 24px);
  font-weight: bold;
  color: black;
}

#sum {
  font-size: clamp(14px, calc(0.875rem + ((1vw - 3.5px) * 0.6369)), 24px);
  font-weight: bold;
  color: black;
  padding-bottom: 20px;
}

.info {
  width: 50%;
  position: relative;
}

.info__main {
  margin-bottom: 20px;
}

.info__text {
  position: absolute;
  bottom: 0;
}

@media (max-width: 610px) {
  body {
    background-image: none;
    background-color: rgb(20, 93, 230);
    height: max-content;
  }

  main {
    width: 100%;
    height: max-content;
    padding: 10px;
    flex-direction: column;
    justify-content: start;
    gap: 10px;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .info {
    width: 100%;
    position: relative;
  }

  .info__text {
    position: relative;
    bottom: 0;
  }
}

@media (max-width: 775px) {
  main {
    font-size: 14px;
  }

  .choice__elem {
  align-items: center;
}

  #generalInformation {
    font-size: 16px;
  }

  #sum {
    font-size: 18px;
  }
}