:root {
  --main-text-color: #000000;
  --border-color: #000000;
  --profile-img-container-size: 180px;
  --profile-img-size: calc(var(--profile-img-container-size) - 30px);

  --font: 'Noto Sans', serif;
  --font-thin: 250;
  --font-regular: 400;
  --font-bold: 700;

  --font-large: 36px;
  --font-big: 24px;
  --font-medium: 16px;
  --font-small: 8px;

  --gap: 10px;

  font-family: var(--font);

  user-select: none;
}

html,
body {
  margin: 0;
  padding: 0;
}


.layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: var(--main-text-color);
}

.profile-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--profile-img-container-size);
  height: var(--profile-img-container-size);
  border-radius: 50%;
  border: 4px solid var(--border-color);
  background-color: white;
  z-index: 1;
}

.profile-img {
  width: var(--profile-img-size);
  height: var(--profile-img-size);
}

.profile-name {
  font-weight: var(--font-bold);
  font-size: var(--font-large);
}

.nav-menu-container {
  margin-top: var(--gap);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap);
}

.nav-menu-container * {
  position: relative;
  font-weight: var(--font-thin);
  font-size: var(--font-medium);
  cursor: pointer;
}

.nav-menu-container *:hover {
  font-weight: var(--font-regular);
}

.nav-menu-container *::after {
  content: ' ';
  position: absolute;
  visibility: hidden;
  transform: scaleX(0);
  left: -10%;
  width: 120%;
  height: 0.6em;
  top: 0.7em;
  background-color: blueviolet;
  border-radius: 4px;
  opacity: 0.15;
  transition: ease-in 0.1s;
}

.nav-menu-container *:hover::after {
  visibility: visible;
  transform: scaleX(1);
}

background-grid {
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
}

.construction-cursor {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpolygon fill='%23FFA500' stroke='%23000' stroke-width='2' points='32,4 4,60 60,60'/%3E%3Cline x1='32' y1='20' x2='32' y2='38' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='32' cy='48' r='2' fill='%23000'/%3E%3C/svg%3E"), auto;
}
