body {
  font-family: Arial W05 Narrow5310067, san-serif;
  margin: 0px;
  padding: 0px;
  width: 100vh;
  overflow-x: hidden !important;

  margin-top: 50px;
}

.missing {
  display: none !important;
}
body, 
.circle {
  background-color: blue;
}

.circle {
  width: 600px;
  height: 600px;
  border-radius: 50%;

  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: block;
  z-index: 10 !important;
  mix-blend-mode: difference;
}

/* -- GRID -------------------------------------- */
.row {
  width: 100vw;
  height: auto;
  /* background-color:white; */
  margin-bottom: 100px;
  text-align: center;

  /* display: grid;
  grid-template-columns: 10% 60% 21% 8%; */
}

a {
  text-decoration: none;
  color: black;
}

.date {
  font-size: 2em;
  line-height: 0;
}

.speaker {
  font-size: 10em;
  line-height: 1;
}


/* -- MOBILE -------------------------------------- */
@media screen and (max-width:768px) {
  .date {
    font-size: 1em;
    line-height: 0;
  }
  
  .speaker {
    font-size: 6em;
    line-height: 1;
  }
  
}