* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--body-background-color);
    color: var(--text-color);
    position: relative;
}


.container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 35px;
  justify-content: center;
}

.lastUsed {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.item2 {
    width: 100px;
    min-width: fit-content;
    height: 65px;
    border: var(--border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--div-background-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.58,.55,.29,.8) 0ms;
    user-select: none;
    box-shadow: 0px 0px 20px -20px;
}

.item2:hover {
    transform: scale(1.02);
    scale: 1.02;
}

.item2:active {
    transform: scale(0.95);
    scale: 0.95;
}

.container > div {
  background-color: var(--div-background-color);
  border: var(--border);
  box-shadow: 0px 0px 20px -20px;
  min-width: 200px;
  min-height: 150px;
  width: 20%;
  height: 25vh;
  margin: 10px;
  text-align: center;
  line-height: 125px;
  font-size: 30px;
  border-radius: 10px;
  transition: all 0.2s ease-in-out 0ms;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container > div:hover {
    background-color: var(--div-hover);
    transform: scale(1.02);
    scale: 1.02;
    cursor: pointer;
}



@media only screen and (max-width: 1000px) {
.container > div {
    width: 40vw;
    font-size: 25px;
    line-height: 30px;

}
}

.over {
    transform: scale(1.05);
    color: #2B4570;
}

h1 {
    text-align: center;
    margin-top: 25px;
    color: var(--text-color);
}

.item {
    position: relative;
}

.newItem {
    font-size: 12px;
    position: absolute;
    top: 0px;
    right: 0px;
    margin-right: 30px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.newItem:hover {
    color: firebrick;
}

footer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: var(--text-color);
    font-weight: 500;
}

::-webkit-scrollbar {
	width: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background-color: var(--scrollbar-thumb);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background-color: var(--scrollbar-thumb-hover);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
	background: var(--scrollbar-track);
    border-radius: 10px;
}

.hidden {
    display: none;
}

.mode-toggle {
    position: absolute !important;;
    top: 10px;
    right: 10px;
    padding: 10px;
    background-color: var(--div-background-color);
    border: var(--border);
    cursor: pointer;
    color: var(--text-color);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.mode-toggle:hover {
    transform: scale(1.05);
}

.mode-toggle:active {
    transform: scale(0.95);
}