* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial;
}

.header {
  text-align: center;
  padding: 32px;
}

.row { /* IE10 */
  display: flex; /* IE10 */
  flex-wrap: wrap;
  padding: 2%;
}

/* Create four equal columns that sits next to each other */
.column { /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 2%;
}

.column img {
  padding-bottom: 20%;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}
#myVideo {
  z-index: -1;
  position: fixed;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0px;
  transform: scale(1.2);
  filter: blur(10px);
}/*# sourceMappingURL=AI.css.map */