/* styles.css */
/* variables */
/* General styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--main-color);
  color: var(--text-color);
  transition: color 0.3s, background-color 0.3s;
  overflow-x: hidden;
}
body.overflow-hidden {
  overflow: hidden;
}

header h1 {
  margin: 0;
}

/* Navigation styles */
@media (min-width: 1000px) {
  nav {
    z-index: 1000;
    background-color: transparent;
    color: var(--accent-color-2);
    transition: color 0.3s, background-color 0.3s;
    padding: 40px 50px 0 50px;
    text-align: center;
    width: 300px;
    position: fixed;
  }
  nav a {
    color: var(--accent-color-2);
    transition: color 0.3s, background-color 0.3s;
    display: block;
    margin: 20px 0;
    text-decoration: none;
    font-size: 1.875rem;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    transition: font-weight 0.3s;
  }
  nav a:hover {
    color: var(--accent-color-3);
    font-weight: 900;
  }
  #mainWrapper {
    display: flex;
    justify-content: center;
    margin: 0 400px;
    margin-bottom: 50px;
    min-width: 600px;
  }
}
@media (max-width: 1000px) {
  nav.desktopNav {
    display: none;
  }
}
/* Main content styles */
#mainWrapper {
  justify-content: center;
  display: flex;
}

main {
  z-index: 1000;
  padding: 20px;
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  width: 600px;
}
@media (max-width: 600px) {
  main {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }
  main p {
    font-size: 1rem;
    padding-left: 10px;
  }
  main p#hello {
    font-size: 1.5rem;
    margin-top: 0;
  }
  main p#helloPara {
    font-size: 1.25rem;
  }
  main .sectionHeader h2 {
    font-size: 2rem;
  }
  main .sectionHeader svg {
    height: 35px;
    width: 35px;
  }
  main form #name, main form #email, main form #message, main form #submit {
    width: calc(100% - 10px);
  }
  main form #submit {
    width: 100%;
  }
}
main p {
  text-indent: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  padding-left: 20px;
}
main p#hello {
  font-size: 5rem;
  margin-bottom: 0;
}
main p#helloPara {
  font-size: 1.5rem;
}
main .sectionHeader {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .sectionHeader h2 {
  color: var(--accent-color-1);
  transition: color 0.3s;
  font-size: 2.5rem;
  font-family: "Inter";
  font-weight: 900;
  display: inline-block;
  margin: 0;
}
main .sectionHeader svg {
  display: inline-block;
  fill: var(--accent-color-1);
  stroke: var(--accent-color-3);
  stroke-width: 50;
  transition: stroke 0.3s, fill 0.3s;
  cursor: pointer;
  height: 45px;
  width: 45px;
  margin: 10px;
}
main .sectionHeader svg.leftIcon {
  margin-left: 0;
}
main .sectionHeader svg.rightIcon {
  margin-right: 0;
}
@media (max-width: 600px) {
  main .sectionHeader {
    margin-top: 50px;
  }
}
main a {
  color: var(--accent-color-2);
  transition: color 0.3s;
  text-decoration: none;
}
main a:hover {
  color: var(--accent-color-3);
  transition: none;
}

form input, form textarea {
  background-color: rgba(255, 255, 255, 0.1019607843);
  border: rgba(0, 0, 0, 0.0705882353) 2px solid;
  color: var(--accent-color-1);
}
form #name, form #email, form #message, form #submit {
  font-size: 1rem;
  margin: 10px 0;
  border-radius: 4px;
  outline-color: var(--accent-color-3);
  font-family: monospace;
  width: 600px;
  height: 40px;
}
form #name:focus, form #email:focus, form #message:focus {
  box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.1882352941);
}
form #submit {
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  width: 608px;
}
form #submit:hover, form #submit.clicked, form #submit:focus, form #submit.submitable:hover {
  background-color: var(--accent-color-1);
  color: var(--accent-color-3);
  box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.1882352941);
}
form #submit.submitable {
  background-color: color-mix(in srgb, var(--accent-color-1), rgb(255, 255, 255) 15%);
  color: var(--accent-color-3);
}
form #message {
  height: 200px;
  resize: none;
}

@keyframes color-scroll {
  0% {
    fill: var(--accent-color-1);
    stroke: var(--accent-color-3);
  }
  33% {
    fill: var(--accent-color-2);
    stroke: var(--accent-color-1);
  }
  67% {
    fill: var(--accent-color-3);
    stroke: var(--accent-color-2);
  }
  100% {
    fill: var(--accent-color-1);
    stroke: var(--accent-color-3);
  }
}
@keyframes cat-nod {
  0%, 50%, 100% {
    transform: translate(0px, 0px);
  }
  12%, 37% {
    transform: translate(-5px, -20px);
  }
  25% {
    transform: translate(-10px, -10px);
  }
  62%, 87% {
    transform: translate(5px, -20px);
  }
  75% {
    transform: translate(10px, -10px);
  }
}
@keyframes cat-tilt {
  0%, 50%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-7deg);
  }
  75% {
    transform: rotate(7deg);
  }
}
@keyframes heart-beat-right {
  0%, 30%, 100% {
    transform: scale(1) translate(0px);
  }
  15%, 45% {
    transform: scale(1.05) translate(-10px, 8px);
  }
}
@keyframes heart-beat-left {
  0%, 30%, 100% {
    transform: scale(1) translate(0px);
  }
  15%, 45% {
    transform: scale(1.05) translate(10px, 8px);
  }
}
@keyframes flower-spin-right {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg);
  }
}
@keyframes flower-spin-left {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-5deg);
  }
}
svg {
  fill: var(--main-color);
  stroke: var(--text-color);
  cursor: pointer;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-width: 22;
  transition: stroke 0.3s, fill 0.3s;
}
svg#headerDrawing {
  stroke-width: 7;
  transition: filter ease 1s, transform ease 1s;
}
svg#headerDrawing .catFace {
  fill: var(--accent-color-1);
}
svg#headerDrawing .catEye, svg#headerDrawing .catMouth {
  fill: transparent;
}
svg#headerDrawing .catNose, svg#headerDrawing .catEar {
  fill: var(--accent-color-3);
}
svg#headerDrawing .leftFlower, svg#headerDrawing .rightFlower {
  fill: var(--accent-color-2);
}
svg#headerDrawing .leftFlowerMiddle, svg#headerDrawing .rightFlowerMiddle {
  fill: var(--accent-color-3);
}
svg#headerDrawing .leftHeart, svg#headerDrawing .rightHeart {
  fill: var(--accent-color-3);
}
svg#headerDrawing.animated {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4392156863));
  transform: scale(1.02);
  transition: filter ease 0.3s, transform ease 0.3s;
}
svg#headerDrawing.animated g, svg#headerDrawing.animated path {
  transform-origin: center;
}
svg#headerDrawing.animated .cat {
  animation: cat-nod 2s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
svg#headerDrawing.animated .catWrapper {
  animation: cat-tilt 2s infinite linear;
}
svg#headerDrawing.animated .rightHeart {
  animation: heart-beat-right 2s infinite ease;
}
svg#headerDrawing.animated .leftHeart {
  animation: heart-beat-left 2s infinite ease;
}
svg#headerDrawing.animated .leftFlowerGroup {
  animation: flower-spin-left 2s infinite cubic-bezier(0.44, 0.03, 0.12, 1);
}
svg#headerDrawing.animated .rightFlowerGroup {
  animation: flower-spin-right 2s infinite cubic-bezier(0.7, 0.19, 0.38, 0.92);
}
svg.nameVector {
  width: 300px;
  height: 200px;
  fill: var(--accent-color-1);
  stroke: var(--accent-color-3);
  stroke-width: 90;
  transition: transform 1s ease, filter 1s ease;
}
svg.nameVector.animated {
  transition: transform 0.3s ease, filter 0.3s ease;
  animation: color-scroll 1s infinite linear;
  transform: scale(1.02);
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4392156863));
}
svg.nameVector.mobile {
  display: block;
  margin: 50px auto;
  width: 90vw;
  max-width: 600px;
  height: 30vw;
  min-height: 200px;
}
@media (min-width: 1000px) {
  svg.nameVector.mobile {
    display: none;
  }
}
svg#heartVector {
  width: 60px;
  height: 60px;
  stroke-width: 25;
  cursor: default;
}
svg#heartVector:hover, svg#heartVector.animated {
  fill: var(--accent-color-2);
  stroke: var(--accent-color-1);
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4392156863));
}
svg#emailicon {
  width: 50px;
  height: 50px;
  stroke-width: 80;
  fill: var(--accent-color-1);
  stroke: var(--accent-color-3);
}
svg#linkedin {
  width: 45px;
  height: 45px;
  stroke-width: 80;
  fill: var(--accent-color-1);
  stroke: var(--accent-color-3);
}
svg#ig {
  width: 40px;
  height: 40px;
  stroke-width: 80;
  fill: var(--accent-color-1);
  stroke: var(--accent-color-3);
}
svg.initials {
  width: 200px;
  height: 200px;
  stroke-width: 80;
  fill: var(--accent-color-1);
  stroke: var(--accent-color-3);
}

#resumeContainer h3 {
  color: var(--text-color);
  transition: color 0.3s;
  font-size: 1.25rem;
  font-weight: 700;
}
#resumeContainer h4 {
  color: var(--text-color);
  transition: color 0.3s;
  font-size: 1.125rem;
  font-weight: 500;
}
#resumeContainer h4 span {
  color: var(--accent-color-3);
  transition: color 0.3s;
  font-size: 0.875rem;
  font-weight: 300;
  margin-left: 10px;
}
#resumeContainer p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 20px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--accent-color-3);
}

.stickerClick {
  position: relative;
  filter: opacity(0.3);
}
.stickerClick svg {
  transform: translate(-50%, -50%);
  fill: var(--accent-color-3);
  stroke: var(--accent-color-1);
  cursor: default;
}

#stickerContainer1 {
  position: fixed;
}
#stickerContainer1 .stickerClick {
  filter: opacity(0.2);
  will-change: transform;
}

#stickerContainer2 {
  position: fixed;
}
#stickerContainer2 .stickerClick {
  filter: opacity(0.4);
  will-change: transform;
}

.socialLink {
  margin-top: 10px;
}
@media (min-width: 1000px) {
  .socialLink {
    margin-left: 50px;
  }
}
.socialLink a {
  display: flex;
  align-items: center;
  width: fit-content;
  font-size: 1.25rem;
}
.socialLink a svg {
  padding-right: 15px;
}
.socialLink a:hover svg {
  fill: var(--accent-color-3) !important;
  stroke: var(--accent-color-1) !important;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes heartSpin {
  0%, 100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(-1);
  }
}
#mobileNav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  color: var(--accent-color-2);
  transition: color 0.3s, background-color 0.3s;
  z-index: 1001;
  flex-direction: column;
  align-items: center;
}
#mobileNav.open {
  display: flex;
}
#mobileNav.animateIn {
  animation: fadeIn 0.3s ease;
}
#mobileNav.animateIn > * {
  animation: fadeInUp 0.3s ease;
}
#mobileNav.animateOut {
  animation: fadeIn 0.3s ease reverse;
}
#mobileNav.animateOut > * {
  opacity: 0;
  animation: fadeInUp 0.3s ease reverse;
}
#mobileNav a {
  color: var(--accent-color-2);
  transition: color 0.3s, background-color 0.3s;
  display: block;
  margin: 20px 0;
  text-decoration: none;
  font-size: 1.875rem;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  transition: font-weight 0.3s;
}
#mobileNav a:hover {
  color: var(--accent-color-3);
  font-weight: 900;
}
#mobileNav #name {
  margin: 50px 0;
}

#mobileNavToggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1002;
  color: var(--accent-color-3);
  width: 40px;
  height: 40px;
  border-radius: 3px;
  display: none;
  cursor: pointer;
}
#mobileNavToggle span {
  display: block;
  width: 30px;
  height: 4px;
  background-color: var(--accent-color-2);
  margin: 6px auto;
  transition: background-color 0.3s;
  border-radius: 3px;
  transition: all 0.3s ease;
}
#mobileNavToggle.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
#mobileNavToggle.open span:nth-child(2) {
  opacity: 0;
}
#mobileNavToggle.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
@media (max-width: 1000px) {
  #mobileNavToggle {
    display: block;
  }
}

@keyframes swell {
  0% {
    font-weight: 700;
    font-size: 2.4rem;
  }
  100% {
    font-weight: 850;
    font-size: 2.5rem;
  }
}
.fadeIntoView {
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transform: translateY(20px);
}
.fadeIntoView.visible {
  opacity: 1;
  transform: translateY(0);
}
.fadeIntoView.visible h2 {
  animation: swell 1s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%) 0.1s 1 both;
}

/** css variables */
:root {
  --main-color: #f4f4f4;
  --accent-color-1: #333;
  --text-color: #bf2828;
  --accent-color-2: #2a636a;
  --accent-color-3: #f0c123;
}

@media (max-width: 600px) {
  #desktopColorBlocks {
    display: none;
  }
}

@media (min-width: 600px) {
  #mobileColorBlocks {
    display: none;
  }
}

/* Footer styles */
#mobileColorBlocks, #desktopColorBlocks {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 10px;
  cursor: pointer;
  z-index: 1010;
}
#mobileColorBlocks #colorBlockContainer, #mobileColorBlocks #colorBlockContainerMobile, #desktopColorBlocks #colorBlockContainer, #desktopColorBlocks #colorBlockContainerMobile {
  padding: 10px;
  background-color: rgba(20, 20, 20, 0.1);
  border-radius: 4px;
}
#mobileColorBlocks:hover, #desktopColorBlocks:hover {
  background-color: rgba(20, 20, 20, 0.3);
}
#mobileColorBlocks span, #desktopColorBlocks span {
  height: 25px;
  width: 25px;
  background-color: var(--accent-color-1);
  transition: background-color 0.3s;
  border-radius: 50%;
  display: inline-block;
  box-shadow: inset 0px 0px 0px 3px rgba(218, 218, 218, 0.48);
}
#mobileColorBlocks span#color-block-1, #desktopColorBlocks span#color-block-1 {
  background-color: var(--main-color);
}
#mobileColorBlocks span#color-block-2, #desktopColorBlocks span#color-block-2 {
  background-color: var(--text-color);
}
#mobileColorBlocks span#color-block-3, #desktopColorBlocks span#color-block-3 {
  background-color: var(--accent-color-1);
}
#mobileColorBlocks span#color-block-4, #desktopColorBlocks span#color-block-4 {
  background-color: var(--accent-color-2);
}
#mobileColorBlocks span#color-block-5, #desktopColorBlocks span#color-block-5 {
  background-color: var(--accent-color-3);
}

/* Color Picker */
#colorPicker {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  margin: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  z-index: 1040;
  justify-content: space-between;
  display: none;
}
#colorPicker.active {
  display: flex;
}
#colorPicker .colorPickerRow {
  display: flex;
  justify-content: space-between;
  margin: 10px;
}
#colorPicker span {
  height: 30px;
  width: 30px;
  background-color: var(--accent-color-1);
  transition: background-color 0.3s;
  border-radius: 50%;
  display: inline-block;
  box-shadow: inset 0px 0px 0px 3px rgba(218, 218, 218, 0.6);
}
#colorPicker span#color-block-1 {
  background-color: var(--main-color);
}
#colorPicker span#color-block-2 {
  background-color: var(--text-color);
}
#colorPicker span#color-block-3 {
  background-color: var(--accent-color-1);
}
#colorPicker span#color-block-4 {
  background-color: var(--accent-color-2);
}
#colorPicker span#color-block-5 {
  background-color: var(--accent-color-3);
}
#colorPicker input.textInput {
  width: 70px;
  text-align: center;
  padding: 1px;
  margin-left: 10px;
  font-family: "Courier New", Courier, monospace;
}
#colorPicker input.colorPickerInput {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
#colorPicker input.is-invalid {
  outline-color: #bf2828 !important;
}
#colorPicker input#color-input-1 {
  outline-color: var(--main-color);
}
#colorPicker input#color-input-2 {
  outline-color: var(--text-color);
}
#colorPicker input#color-input-3 {
  outline-color: var(--accent-color-1);
}
#colorPicker input#color-input-4 {
  outline-color: var(--accent-color-2);
}
#colorPicker input#color-input-5 {
  outline-color: var(--accent-color-3);
}
#colorPicker li {
  margin: 10px;
  padding: 5px;
  background-color: var(--main-color);
  transition: background-color 0.3s;
  border-radius: 4px;
}
#colorPicker .colorPreset {
  display: block;
  cursor: pointer;
  text-align: center;
}
#colorPicker .colorPreset:hover {
  color: var(--accent-color-3);
}
#colorPicker .colorPreset#randomColor {
  margin-top: 20px;
  border: 2px solid var(--accent-color-1);
}
#colorPicker #colorPickerCloseButton {
  position: absolute;
  top: 10px;
  right: -40px;
  cursor: pointer;
  z-index: 1040;
}
#colorPicker #colorPickerCloseButton span {
  display: block;
  width: 30px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 6px auto;
  transition: background-color 0.3s;
  border-radius: 3px;
  transition: all 0.3s ease;
}
#colorPicker #colorPickerCloseButton:hover span {
  background-color: rgba(255, 255, 255, 0.8);
}
#colorPicker #colorPickerCloseButton span:nth-child(1) {
  transform: rotate(-45deg) translate(-4px, 4px);
}
#colorPicker #colorPickerCloseButton span:nth-child(2) {
  transform: rotate(45deg) translate(-4px, -4px);
}
@media (max-width: 600px) {
  #colorPicker #colorPickerCloseButton {
    top: -40px;
    right: 0px;
  }
}

#colorPickerPresets {
  margin-right: 20px;
}

#presetsLabel, #customLabel {
  font-size: 1.5rem;
  color: var(--text-color);
  transition: color 0.3s;
  font-weight: 700;
}

#themeButtons {
  font-size: 1.125rem;
  margin: 0;
  margin-right: 10px;
  padding: 0px;
}
#themeButtons .presets {
  height: 150px;
  overflow: scroll;
  -webkit-mask-image: linear-gradient(black 90%, transparent 100%);
  mask-image: linear-gradient(black 90%, transparent 100%);
}

#colorPickerBackground {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1020;
  display: none;
}
#colorPickerBackground.active {
  display: block;
}

/*# sourceMappingURL=styles.css.map */