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

body {
  background: radial-gradient(52.25% 41.43% at 20.63% 22.59%, #C3D4FF 0%, #AAC2FF 100%);
}

@font-face {
  font-family: Urbanist;
  src: url(../fonts/Urbanist-regular.ttf);
}
@font-face {
  font-family: Urbanist;
  font-weight: 900;
  src: url(../fonts/Urbanist-Bold.ttf);
}
@font-face {
  font-family: Inter;
  src: url(../fonts/Inter-regular.ttf);
}
nav > *:not(.grow) {
  transform: scale(1);
  transition: all 0.1s ease-out;
}
nav > *:not(.grow):hover {
  transform: scale(1.15);
}
nav > *:not(.grow):active {
  transform: scale(0.9);
}

.grow {
  overflow: hidden;
  background: linear-gradient(145deg, #EAF0FF 0%, #AAC2FF 100%);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.0901960784);
}
.grow:hover {
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.0901960784);
}
.grow:active {
  box-shadow: 0 0 40px -5px rgba(0, 0, 0, 0.0901960784);
}