/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&display=swap'); */

* {
  margin: 0;
  padding: 0;
}

.grid {
  margin: 5px;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: auto;
  grid-gap: 0.6em;
  justify-content: center;
  align-content: center;
  padding-bottom: 10px;
  @media only screen and (max-width: 700px) {
    grid-gap: 0.3em;
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

header {
  /* background-color: #0b2738; */
  background-color: #0a1730;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 25%;
}

footer {
  background-color: #353333;
  font-family: 'Verdana';
  /* font-family: 'Montserrat'; */
  color: white;
  text-align: center;
}

.logo img {
  width: 500px;
  @media only screen and (max-width: 700px) {
    width: 200px;
  }
}

.grid video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  @media only screen and (max-width: 700px) {
    padding-top: 7px;
    padding-bottom: 7px;
  }
}
