* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 0.2s ease-in-out;
}

.wrapper {
  width: 100vw;
  height: 100vh;
  padding: 100px;
  position: relative;
}

a.hashtag,
a.hashtag:visited {
  color: var(--color);
  position: absolute;
  font-size: 120px;
  border-bottom: solid 6px var(--border-color);
  text-decoration: none;
}
