:root {
  --plainclr: #ffffff;
  --darkclr: #000000;
  --facebook: #3b5998;
  --redclr: #FF0000;
  --pinkclr: #ff00a5;
  --yellowclr: #fcb045;
  --shadow1:0 0 2px rgba(0, 0, 0, 0.14), 0 1px 4px rgba(0, 0, 0, 0.28);
}

.white-icons {
  margin: 0;
  background-color: var(--plainclr);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
  position: relative;
}
.white-icons .buttons-parent {
  display: flex;
  gap: 15px;
  z-index: 10;
  align-items: center;
  justify-content: center;
}
.white-icons .btns {
  display: flex;
  align-items: center;
  border-radius: 0px;
  cursor: pointer;
  border: none;
  font-size: 14px;
  color: var(--plainclr);
  font-weight: 400;
  text-decoration: none;
  transition: all 0.5s linear;
}
.white-icons .btns:focus {
  outline: none;
}
.white-icons .btns .icon-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border-radius: 5px;
  height: 40px;
  width: 40px;
  transition: 0.3s ease;
}
.white-icons .btns .icon-bg:hover {
  background: var(--plainclr);
  box-shadow: var(--shadow1);
  transform: scale(1.1);
  opacity: 0.8;
  color: var(--darkclr);
}
@media (max-width: 575px) {
  .white-icons .btns .icon-bg,
  .white-icons .btns .text-bg {
    padding: 6px 10px;
  }
}
.white-icons .facebook .icon-bg {
  background-color: var(--facebook);
}
.white-icons .twitter .icon-bg {
  background-color: var(--darkclr);
}
.white-icons .instagram .icon-bg {
  background: linear-gradient(45deg, var(--pinkclr) 20%, var(--yellowclr));
}
.white-icons .youtube .icon-bg {
  background: var(--redclr);
}/*# sourceMappingURL=social-media-iconsDesign4.css.map */