.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 75px;
    color: white;
    text-align: center;
}

.form {
    background-color: black;
    color: white;
    font-size: medium;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
}

.form input, textarea {
    background-color: black;
    color: white;
}

.form p {
    margin-top: 35px;
    text-align: left;
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 750px)
  and (-webkit-min-device-pixel-ratio: 2) {
    .grid-container {
        display: inline-block;
        grid-template-rows: repeat(2, 1fr);
        left: 0;
        width: 100%;
    }
    .grid-item {
        max-width:fit-content;
    }
      .gMap {
          height: auto;
          width: auto;
      }
}

button {
    background-color: whitesmoke;
    color: black;
    height: 50px;
    width: 15%;
}