* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: auto;
  scrollbar-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background: #aac2ff;
}
*::-webkit-scrollbar-thumb {
  background-color: #303030;
  border-radius: 10px;
  border: 3px solid rgba(255, 255, 255, 0);
}

@font-face {
  font-family: Urbanist;
  src: url(../fonts/Urbanist-regular.ttf);
}
@font-face {
  font-family: Inter;
  src: url(../fonts/Inter-regular.ttf);
}
body {
  overflow-x: hidden;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background: radial-gradient(52.25% 41.43% at 20.63% 22.59%, #C3D4FF 0%, #AAC2FF 100%);
}

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);
}

.options-section > * {
  transform: scale(1);
  transition: all 0.1s ease-out;
}
.options-section > *:hover {
  transform: scale(1.15);
}
.options-section > *:active {
  transform: scale(0.9);
}

.word-list-card {
  animation: zoom-in 0.3s ease-out;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
input:focus {
  outline: none;
  border: 2px solid #91a7dd;
  box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, 0.1568627451);
}

#edit-screen {
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1725490196);
  animation: edit-anm 0.4s ease-out;
}

@keyframes edit-anm {
  0% {
    transform: translate(0, -100%);
  }
  100% {
    transform: translate(0, 0);
  }
}
#delete-all {
  box-shadow: -5px 5px 30px 0 rgba(0, 0, 0, 0.137254902);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transform: translate(90%, 0);
}
#delete-all:hover {
  transform: translate(50%, 0);
}

#logo-element {
  transform: translate(-50%, 0);
}
#logo-element .relative .absolute {
  transform: translate(-50%, -50%);
}

.rotate-anm {
  animation: rotate-anm 20s infinite linear;
}

@keyframes rotate-anm {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
#word-list {
  overflow-y: scroll;
  overflow-x: hidden;
}

.word-card-color-10 {
  background: #F3BFC2;
}
.word-card-color-20 {
  background: #E9C4CE;
}
.word-card-color-30 {
  background: #DEC8D9;
}
.word-card-color-40 {
  background: #D4CDE5;
}
.word-card-color-50 {
  background: #CAD0F2;
}
.word-card-color-60 {
  background: #C1D4F3;
}
.word-card-color-70 {
  background: #B9D9E3;
}
.word-card-color-80 {
  background: #B1DDD4;
}
.word-card-color-90 {
  background: #AAE1C7;
}
.word-card-color-100 {
  background: #A2E5B8;
}
.word-card-color-110 {
  background: #9AE9A8;
}
.word-card-color-120 {
  background: #93ED99;
}
.word-card-color-130 {
  background: #8BF28A;
}

.order-0 {
  background: #E4EAFC;
  color: black;
  box-shadow: 0 0 0px 0 rgba(225, 79, 79, 0.6588235294);
}
.order-0 img {
  width: 30px;
}

.order-1 {
  color: white;
  background: #E14F4F;
  box-shadow: 0 0 50px 0 rgba(225, 79, 79, 0.6588235294);
}
.order-1 img {
  width: 30px;
}

.order-2 {
  color: white;
  background: #6BD169;
  box-shadow: 0 0 50px 0 #6BD169;
}
.order-2 img {
  width: 30px;
}