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

body {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  height: 100dvh;
  background: #ffffff;
  overflow: hidden;
  padding-top: 15dvh;
}

#popweb-canvas {
  width: 100%;
  height: 25dvh;
  cursor: pointer;
}

canvas { 
  display: block; 
  width: 100%; 
  height: 100%; 
}

.contact-wrapper {
  flex-shrink: 0;
  text-align: center;
  padding: 20px 0 40px;
}

.contact {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(14px, 3vw, 26px);
  color: #5A4A78;
  letter-spacing: 1px;
  line-height: 1.8;
}

.contact a { 
  color: #5A4A78; 
  text-decoration: none; 
}

.contact-sub {
  margin-top: 10px;
}