/* General */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Responsive iframe */
.iframe-container {
  position: relative;
  width: 750px;
  height: 220px;
  /* border-radius: 10px; */
  overflow: hidden;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  border: 0;
}

/* Mobile screens */
@media (max-width: 600px) {
  .iframe-container {
    height: 550px !important;
    width: 100% !important;
  }

  .iframe-container iframe {
    height: 550px !important;
    width: 100% !important;
  }
}
