.select { position: relative; display: inline-block; width: 12rem; text-align: center; background-color: var(--color-yellow); color: var(--color-dark); border-radius: 10px; } .selected__option { cursor: pointer; padding: 10px; border: none; display: flex; justify-content: space-between; } .options { position: absolute; top: 140%; left: 0; height: 400px; overflow-y: auto; width: 100%; border: none; border-radius: 10px; background-color: var(--color-yellow); z-index: 2; } .option { padding: 10px; color: var(--color-dark); border-bottom: var(--color-dark) 1px solid; cursor: pointer; transition: all 0.3s ease; &:hover { scale: 0.9; } &:last-child { border-bottom: none; } } @media screen and (max-width: 480px) { .select { width: 8rem; font-size: 14px; } .selected__option { padding: 8px; } }