.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.2);
}

/* Modal content */
.modal-content {
  position: relative;
  background-color: var(--bg-primary);
  background-image: url("../img/edit.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 120%;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 4% 1%;
  border: 1px solid white;
  width: 500px;
  max-width: 80%;
  text-align: center;
  color: var(--color-primary);
}
.button{
  padding: 4px 16px;
  color: var(--bg-primary);
  background-color: #256013;
  text-decoration: none;
  border-radius: 2px;
}
/* Close button */
.close {
  color: var(--color-primary);
  position: absolute;
  top: 0;
  right: 16px;
  font-size: 28px;
  font-weight: normal;
  cursor: pointer;
}

.close:hover {
  color: black;
}
@media (orientation: portrait) {
  .modal-content {
    width: 65%;
    height: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url("../img/edit_mobile.png");
    background-size: cover;
  }

}
