@import url(https://fonts.googleapis.com/css?family=Lato:400,400italic,700);

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

html, body {
  margin: 0;
  height: 100%;
}

html {
  font-family: 'Lato', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: black;
}

h1 {
  text-align: center;
  font-size: 22px;
  font-weight: normal;
  margin: 60px 0 15px;
}

.container iframe {
  width: 345px;
  max-width: 100%;
  height: 194px;
  margin: 0 auto;
  display: block;
}

@media only screen and (min-width: 400px) {
  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .container h1 {
    display: none;
  }

  .container iframe {
    width: 100vw;
    height: 56.25vw;
    padding: 2.25vw 4vw;
  }
}
