
/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     -ms-box-sizing: border-box;
     -o-box-sizing: border-box;
}

body {
  width: 100% !important;
  /* Use the most accurate viewport units first */
  height: 100svh;
  min-height: 100svh;
  /* Fallbacks for older browsers */
  height: 100dvh;
  min-height: 100dvh;
  height: 100vh;
  min-height: -webkit-fill-available;
  min-height: fill-available;
  overflow-x: hidden;
  border: 2px solid #4199f7;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-direction: row;
  -webkit-flex-direction: row;
     -ms-flex-direction: row;
  padding: 0;
  gap: 10px;
  -webkit-gap: 10px;
     -moz-gap: 10px;
  margin: 0;
  padding-right: 3px;
  padding-bottom: 3px;
  align-items: stretch;
  -webkit-align-items: stretch;
     -ms-flex-align: stretch;
     flex-direction: column;
}

#website-link {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(3em, 2vw, 2vw);
  color: #4199f7;
  text-decoration: underline;
  display: inline;
  margin: 10px 0;
  cursor: pointer;
  line-height: 1.4;
  vertical-align: middle;
  transition: color 0.2s;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
  padding-left: 0.2em;
}