#map,
.column,
.row,
body,
html {
  height: 100%;
}

.container,
iframe {
  border-radius: 2px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

p {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
  font-size: 1.5em;
}

.row {
  display: flex;
}

.column {
  flex: 50%;
}

.column.left {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #33338b;
}

.left-side {
  color: #fff;
  font-weight: 400;
  width: 80%;
}

.left-side h1 {
  font-size: 3em;
  margin-top: -0.1em;
}

.left-side h3 {
  font-size: 2em;
}

.left-side p {
  margin-top: -0.1em;
}

.left-side address {
  font-style: normal;
  line-height: 30px;
  margin-top: 16px;
}

.left-side address a {
  text-decoration: dashed;
  color: #fff;
}

.left-side address a:hover {
  opacity: 0.8;
}

#map {
  width: 100%;
  position: relative; 
  overflow: hidden;
}

#map iframe{
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 600px) {
    #map,
    .column,
    .row,
    body,
    html {
        min-height: 60%;
    }

  .row {
    flex-direction: column;
  }

  .row .column {
    flex: 100%;
    height: 100%;
  }

  .left-side {
    width: 90%;
  }

  .left-side h1 {
    font-size: 2em;
  }

  .left-side p {
    font-size: 1.2em;
    margin-top: 0.3em;
  }
}
