@import url('https://fonts.googleapis.com/css?family=Open+Sans');

body {
  background: #000;
  text-align: center;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif!important;
  overflow: hidden;
}
.slide {
  display: inline-flex;

  flex-direction: row;
  justify-content: center;
  align-items: center;

  height: 100vh;
  width: 100vw;
  background: #FFF;

  box-shadow: 0em 0em 0.5em 0.1em rgba(0, 0, 0, 0.1);

  background: #0f7518 url("/assets/png/watermark/");
  background-size: 100% 100%;
  background-repeat: no-repeat;

  color: #FFF;
}

@media (max-width: 480px) {
  .slide {
    background: #0f7518; /* Alleen de effen kleur */
  }
}

.column {
  width: auto;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.row {
  width: auto;
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.slide_title {
  font-size: 6vmin;
  font-weight: 500;
}
.slide_subtitle {
  font-size: 3vmin;
  font-weight: 400;
}
.limited {
  max-width: 60vw;
}

.slide_title, .slide_subtitle, .slide img:not(.full) {
  margin: 0.5vmin 2vmin;
}
.slide img:not(.full) {
  flex: 2 1 auto;
  max-width: 30vw;
  min-width: 20vw;
}
.full {
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
}

div[contenteditable] {
  border: 1px dashed rgba(175, 175, 175, 0.4);
}
div[contenteditable]:focus {
  border: 1px dashed rgba(175, 175, 175, 1);
  outline: none;
}