:root {
  --bg: #24c1ff;
  --text: #fff;
  --footer-bg: #ffea92;
  --footer-text: #444;
  --footer-link-select: #aa4488;
}

body {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -4%;
  line-height: 0.95;
}
@media screen and (orientation: portrait) {
  header {
    height: 30vh;
  }
}
.main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

header {
  display: flex;
  background-color: var(--bg);
  justify-content: center;
  align-items: center;
  color: var(--text);
  min-height: max-content;
  flex-grow: 1;
}
.header-text {
  display: inline-flex;
  justify-content: safe center;
  align-items: safe center;
  flex-wrap: wrap;
  gap: 1em;
}

.hi {
  font-size: 20vw;
  margin: 0;
}

.welcome {
  font-size: 5vw;
}

footer {
  padding: 0 0.5em;
  display: flex;
  background-color: var(--footer-bg);
  justify-content: center;
  align-items: flex-start;
  min-height: fit-content;
}

.footer-text {
  color: var(--footer-text);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
}

.footer-text::selection,
.footer-text > a::selection {
  color: var(--footer-bg);
  background-color: var(--footer-text);
}
.header-text > p::selection {
  color: var(--bg);
  background-color: var(--bg);
}

.footer-text > a:any-link {
  text-decoration: none;
  color: var(--footer-text);
}

.footer-text > a:any-link:hover,
a:any-link:active {
  color: var(--footer-link-select);
  cursor: pointer;
}
