* {
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  height: 100vh;
  background: #f1f3f6;
  font-family: sans-serif;
}

.lang-menu {
  position: relative;
  top: 1px;
  left: 47px;
  display: flex;
  gap: 12px;
  z-index: 1;
}


.lang-button {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 1px 13px rgba(0, 0, 0, 0.15);
  border: 1px solid transparent;
  background-image: linear-gradient(45deg, orange, transparent);
  transition: transform 0.2s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.lang-button:hover {
  transform: scale(1.1);
}

.lang-button:focus {
  outline: none;
  box-shadow: none;
}

.lang-button:active {
  background-color: transparent !important;
}