* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

canvas#flag {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 8vh 6vw 0 6vw;
}

.logo {
  width: min(60vw, 620px);
  height: auto;
  margin-bottom: 3vh;
  pointer-events: none;
}

.definition {
  color: #ffffff;
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: 0.05em;
  line-height: 1.5;
  max-width: 600px;
  margin-bottom: 6vh;
  pointer-events: none;
}

.definition {
  margin-left: 4px; /* adjust to taste */
}

.contact {
  margin-left: 4px; /* adjust to taste */
}

.contact {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: 0.05em;
  text-decoration: none;
  width: fit-content;
  pointer-events: auto;
}

.contact:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .overlay {
    padding: 10vh 8vw 0 8vw;
  }
  .logo {
    width: 85vw;
  }
}
