:root {
  --bg: #031913;
  --fg: #ffffff;
  --accent: #ffffff;
  --hover: #22e071;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "NHaasGroteskTXPro-55Rg";
  font-style: normal;
}

h1 {
  color: var(--accent);
  margin-top: 0;
  font-size: 28px;
  padding-bottom: 20px;
  font-family: "NHaasGroteskTXPro-65Md";
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.01em;
}

h2 {
  padding: 0px;
  margin: 0px;
  display: block;
  letter-spacing: -0em;
  font-family: "NHaasGroteskTXPro-55Rg";
  font-style: normal;
  font-size: 28px;
  font-weight: 400;
}

.kelphiee {
  color: var(--hover);
}

a {
  color: var(--fg);
  text-decoration: none;
  display: inline;
  background-image: linear-gradient(
    to bottom,
    transparent 20%,
    currentColor 21%
  );
  background-position: 0 1em;
  background-repeat: no-repeat;
  background-size: 0% 6px;
  transition: background-size 0.5s ease-in-out 0.2s;
}

a:hover,
a:focus {
  background-size: 100% 6px;
  transition-delay: 0s;
  color: var(--hover);
}

p {
  margin-top: 0;
  padding-bottom: 20px;
  letter-spacing: -0em;
}

span img {
  max-height: 30px;
  padding-bottom: 0px;
}

main {
  max-width: 900px;
  padding: 60px;
  letter-spacing: 0;
  font-size: 28px;
  line-height: 37px;
}

header {
  padding-bottom: 0px;
  margin-bottom: 20px;
}

.block {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 80px;
  height: 80px;
}
