@charset "UTF-8";
/* CSS Document */


body {
  margin: 0;

  /* Center the whole grid on the screen */
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 640px;                 /* total width */
  display: grid;
  grid-template-columns: 1fr 1fr; /* two equal columns */
  column-gap: 29px; /* space between the two columns */
  row-gap: 1px;     /* space between row 1 and row 2 (smaller) */
}

.full-width {
  grid-column: 1 / -1;          /* span across both columns */
}

.box {
   
  padding: 2px;
  background-color: #fff;
  text-align: center;
  border-radius: 6px;
}

box iframe {
    height: 250px !important;
  }


/* MOBILE FIX */
@media (max-width: 600px) {

  .container {
    width: 100%;
  }


  .box iframe {
    height: 180px !important;
  }

  .full-width iframe {
    height: 140px !important;
  }
}

	