/* === Modern CSS Reset === */
/* Author: ChatGPT, 2025 edition */

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

/* Remove default list styles */
ul, ol {
  list-style: none;
  padding-left: 0;
}

/* Remove default link styles */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;  /* control line weight */
  text-underline-offset: 4px;
}

/* Make images behave better */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Reset form elements */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Give buttons & inputs cursor and accessibility */
button, [role="button"] {
  cursor: pointer;
}

/* Reset headings for consistency */
h1, h2, h3, h4, h5, h6 {
  font: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/* Reset paragraphs */
p {
  margin: 0;
}

/* Set base line-height and font smoothing */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.25;
  font-size: 16px; /* adjust as needed */
}
/* Reset body defaults */
body {
  min-height: 100svh;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-rendering: optimizeLegibility;
  background-color: #fff;
  color: #8E63FF;
  background: #EFEFEF;
}
#wrapper {
  padding: 6%;
  width:100vw;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
#claim {
  white-space: nowrap;
  font-size: clamp(2rem, 7vw + .5rem, 8rem);
  font-weight: 500;
  text-align: center;
  text-wrap: balance;
}
#contact {
  font-size: 1.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  /* Your styles here */
  #claim {
    white-space: normal;
  }
}