/* General Reset */
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Rubik', sans-serif;
  background: url(bg.jpeg);
  background-position: center;
  background-size: cover;
  height: 50vh;
}

/* Social Icons Navigation */
.social-icons {
  position: fixed;
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Adjust for perfect centering */
  width: 55px;
  left: 0; /* Align to the left side */
  z-index: 1000; /* High z-index to stay on top */
  transition: all 0.3s linear;
  box-shadow: 2px 2px 8px 0px rgba(0,0,0,.4);
}

.social-icons ul {
  margin: 0;
  padding: 0;
}

.social-icons li {
  height: 40px;
  position: relative;
}

.social-icons li a {
  color: white;
  display: block;
  height: 100%;
  width: 100%;
  line-height: 40px;
  padding-left: 25%;
  border-bottom: 1px solid rgba(0,0,0,.4);
  transition: all .3s linear;
}

/* Social Icon Colors */
.social-icons li:nth-child(1) a {
  background: #686D76;
}

.social-icons li:nth-child(2) a {
  background: #373A40 ;
}

.social-icons li:nth-child(3) a {
  background: #686D76;
}

.social-icons li:nth-child(4) a {
  background: #373A40;
}

.social-icons li:nth-child(5) a {
  background: #686D76;
}

.social-icons li:nth-child(6) a {
  background: #373A40;
}

/* Icon Positioning */
.social-icons li a i {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 20px;
}

/* Text Span Styling */
.social-icons li a span {
  display: none;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hover Effects */
.social-icons li a:hover {
  z-index: 1;
  width: 200px;
  border-bottom: 1px solid rgba(0,0,0,.5);
  box-shadow: 0 0 1px 1px rgba(0,0,0,.3);
}

.social-icons li:hover a span {
  padding-left: 30%;
  display: block;
}

/* Specific Menu Styling (if needed) */
.menu {
  /* Menu-specific styling */
}

.menu ul {
  /* Menu-specific styling */
}

.menu li {
  /* Menu-specific styling */
}

.menu li a {
  /* Menu-specific styling */
}


.socialtxt{
  font-size: 14px;
  color: #fff;
}