:root {
  --color-sand: rgb(209 204 189);
  --color-green: rgb(196 214 164);
  --color-pink: rgb(204 174 208);
  --color-blue: rgb(164 188 194);
  --color-red: rgb(110 35 47);

  --logo-spacing: 20px;
  --logo-height: 98.858px;
  --logo-width: 386.6px;
  --lines-height: var(--logo-height);
  --background-color: color-mix(in srgb, var(--color-sand) 30%, transparent);
  --content-offset: 100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  background-color: var(--background-color);
}

body {
  height: 100dvh;
  width: 100vw;
  background: url("/images/paper.png");
  font:
    300 16px/1.5 Ubuntu,
    sans-serif;
}

#wrapper {
  position: relative;
  padding-block-start: var(--content-offset);
  margin-inline: auto;
  width: calc(var(--logo-width) + 2 * var(--logo-spacing));
  text-align: center;
}
#lines {
  position: absolute;
  top: var(--content-offset);
  left: 0;
  width: 100vw;
  height: var(--lines-height);
  background-image: url("/images/lines.svg");
}
header {
  padding-inline: var(--logo-spacing);
  background: url("/images/paper.png");
}
h1 {
  height: var(--logo-height);
  background: url("/images/tregusti.svg") no-repeat;
  position: relative;
  color: transparent;
  text-indent: -200vw;
}
h2 {
  margin-inline: auto;
  margin-block-start: 0.5rem;
}

a:link {
  color: var(--color-red);
  text-decoration: none;
}
ul {
  margin-block-start: 2rem;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.logo {
  display: block;
  background-color: var(--color-red);
  width: 40px;
  height: 40px;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.logo-linkedin {
  mask-image: url("/images/logos/linkedin.svg");
}
.logo-github {
  mask-image: url("/images/logos/github.svg");
}
