@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  box-sizing: border-box;
}

body {
  background-color: #0a0a0abd;
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-weight: bold;
  overflow: x;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  opacity: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.container {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: 70px;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #fff;
  padding: 20px;
  margin: 40px;
  margin-right: 5px;
  box-sizing: border-box;
  box-shadow: 21px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex-shrink: 3;
  
}

.sidebar ul {
  list-style: none;
  padding: 0px;
}

.sidebar ul li {
  margin: 0 0;
  padding-bottom: 20px;
}

.sidebar ul li a {
  color: #ffffff;
  text-decoration: none;
}

.social-links {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0px;
  margin: 10px 0;
}

.social-links a {
  display: inline-block;
  width: 30px;
  height: 40px;
}

@media (max-width: 600px) {
  .social-links a {
    justify-content: center;
  }
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltip-text {
  font-weight: 600;
  font-size: xx-small;
  visibility: hidden; 
  color: #ffffff;
  padding: 2px 0;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 28%;
  left: 110%;
  margin-right: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.6s;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.content {
  flex-shrink: 3;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 21px;
  color: #ffffffbd;
  position: relative;
  flex: 1;
  padding: 20px;
  margin: 40px;
  box-sizing: border-box;
  border-radius: 10px;
  width: fit-content;
}

/* Responsive Styles */
@media only screen and (max-width: 600px) {
  .container {
    width: max-content;
    flex-direction: column;
  }

  .content-item {
    flex: 1 1 100%;
  }

  .sidebar {
    width: fit-content;
    flex-direction: row;
    justify-content: space-around;
  }

  .sidebar ul {
    flex-direction: row;
  }

  .sidebar ul li {
    margin: 10px;
  }

  /* .content {
    flex-direction: column;
  } */
}
