:root {
  --white: #DDDEF0;
  --black: #0A090E;
  --blue-light: #4A58A5;
  --blue-med: #272665;
  --blue-dark: #181546;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  min-height: 100vh;
  font-family: 'Unbounded', cursive;
}

/*  */

.section-Intro {
  display: flex;
  flex: 50%;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
}

.txt {
  width: 100%;
}

.txt p {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.75;
  margin: 2rem;
}

.txt p:hover {
  cursor: default;
}

/* elements hover effect, text */

.element {
  transition: transform 0.2s ease, color 0.2s ease;
}

.element:hover {
  transform: scale(1.25);
  color: #00a816;
  cursor: pointer;
}

.i-am:hover {
  color: #e9b611;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>🤵</text></svg>") 16 0, auto;
}

.creator:hover {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>💻</text></svg>") 16 0, auto;
}

.heart:hover {
  color: #d70000;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>❤️</text></svg>") 16 0, auto;
}

.art:hover {
  color: #272665;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>🎨</text></svg>") 16 0, auto;
}

.words:hover {
  color: #9400d3;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>📝</text></svg>") 16 0, auto;
}

.magic:hover {
  color: #120d57;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>🧙‍♂️</text></svg>") 16 0, auto;
}

.code:hover {
  color: #00a816;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>👨‍💻</text></svg>") 16 0, auto;
}

.gaming:hover {
  color: #bd1a1a;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>🎮</text></svg>") 16 0, auto;
}

.no-bounds:hover {
  color: #f4a460;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>😎</text></svg>") 16 0, auto;
}

.challenges:hover {
  color: var(--blue-light);
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>🧠</text></svg>") 16 0, auto;
}

