
.announcement {
  text-align: center;
  width: overflow;
  background: #AC9A86;
  color: white;
  font-family: Arial, sans;
  margin: 0;
  padding: 1%;
  vertical-align: middle;
  font-size: 0.4em;
}


body {
	background-color: 929fb5;

  font-size: 40px;
  font-family: Sprat;
  font-weight: 400;
  font-variation-settings: "wght" 100;
  
  
  margin: 60px;
}

footer{
  font-size: 20px;
  font-family: Arial;
  text-align: center;
  color:#F4F4E7;
  
  margin: 60px;
}

section {
  position: relative;
  z-index: 1;
  
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
}

section div {
  margin: 32px 32px 80px 32px;
}

section img {
  margin-top: 40px;
  margin-bottom: 12px;
  align-items: center;
}

div.filled, div.outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  
  background-image: url(filled-logo.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

div.outline {
  background-image: url(outline-logo.png);
  z-index: 2;
}

div.cursors div {
  position: absolute;
  top: 300px;
  left: 300px;
  width: 22px;
  height: 22px;
  background-color: #F4F4E7;
  border-radius: 50%;
  z-index: 10000;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

div.cursors div span {
  position: absolute;
  top: 0;
  left: 40px;
  width: 300px;
  
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  color: #F4F4E7;
  
  opacity: 0;
  transition: opacity 0.5s;
}

div.cursors div span.visible {
  opacity: 1;
}

