:root {
  --font-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  --font-mono: "JetBrains Mono", Menlo, Monaco, "Lucida Console",
    "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono";

  --colour-primary: #e63697;
  --colour-base: #141518;
  --colour-secondary: #282a2e;
  --colour-darken: #43464d;
  --colour-text: #ffffff;
  --colour-contrast: #cecece;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;

  font-family: var(--font-sans);
  color: var(--colour-text);

  transition-property: box-shadow, background, border-color, color, fill, stroke;
  transition-duration: 175ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

  text-decoration: none;
}

body {
  min-height: 100vh;
  width: 100%;
  background: var(--colour-base);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-mono);
}

p {
  font-weight: 400;
}

header {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem;
}

header nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

header a {
  font-weight: 500;
}

header nav a {
  color: var(--colour-contrast);
}

header nav a:hover {
  color: var(--colour-text);
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  gap: 1rem;
  align-items: center;
}

#heart {
  font-size: 30px;
  color: var(--colour-primary);
}

#luv {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  cursor: default;
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}

#mf {
  position: absolute;
  width: fit-content;
  opacity: 0;
  transition-property: opacity;
  left: 2px;
}

#luv:hover * {
  opacity: 1;
}
