@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
}

body {
  background: #e7e2df;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
}

.container {
  width: 500px;
  height: 800px;
  padding: 2rem;
  background-color: #fff;
  border-radius: 10px;
  display: none;
  position: sticky;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.container .close {
  margin-left: 32rem;
  cursor: pointer;
  height: 3.5vh;
}

.container .pop-up {
  width: 100%; /* or any custom size */
  height: 100%;
  object-fit: cover;
}

.container h1 {
  margin-bottom: 1rem;
  text-align: center;
}
.container p {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: justify;
  color: #636e72;
}

@media only screen and (max-width: 500px) {
  /* For mobile phones: */
  .container {
    width: auto;
    height: auto;
    position: fixed;
    margin-top: 50rem;
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .container .close {
    margin-left: 8rem;
    margin-bottom: 2rem;
    cursor: pointer;
    height: 2.5vh;
    object-fit: cover;
    z-index: 20;
  }

  .close {
    margin-right: 8rem;
  }

  .menu1 {
    width: 400px;
    height: auto;
  }

  .menu1 img {
    width: 100%;
    height: 100%;
  }

  .menu2 {
    width: 400px;
    height: auto;
  }

  .menu2 img {
    width: 100%;
    height: 100%;
  }

  .menu3 {
    width: 400px;
    height: auto;
  }

  .menu3 img {
    width: 100%;
    height: 100%;
  }
  .menu4 {
    width: 400px;
    height: auto;
  }

  .menu4 img {
    width: 100%;
    height: 100%;
  }
  .button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .button {
    border: none;
    padding: 10px;
  }

  .button img {
    height: 30px;
    width: 30px;
  }
}
