* {
  margin: 0;
  padding: 0;
}
body{
  background: rgb(43, 43, 43);

}
header,footer {
  height: 10vh;
  background-color: #131313;
  box-shadow: 0px 0px 30px 2px grey;
  display: flex;
}



.content_body{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.main_stuff_body{
  display: flex;
  flex-direction: column;
  flex: 0 1 100%;
  flex-wrap: nowrap
  ;
}

.main_stuff {
  /* background: blue; */
  height: 80vw;
  display: flex;
  flex-direction: column;  /* Changed from row (default) to column */
  justify-content: center;
  align-items: center;
}

.main_stuff h1 {
  color: rgb(177, 177, 177);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.social-links {
  display: flex;
  gap: 50px;  /* Increased from default/20px to 40px */
  justify-content: center;
  padding: 20px 0;
}

/* Add these media queries for responsiveness */
@media (max-width: 768px) {
  .social-links {
    gap: 100px;
  }
}

@media (max-width: 480px) {
  .social-links {
    gap: 70px;
  }
}

@media (max-width: 320px) {
  .social-links {
    gap: 30px;
  }
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon img {
  width: 100%;
  height: 100%;
  filter: invert(0.7); /* This will invert the colors */
}



.profile-pic {
  width: 200px;
  height: 200px;
  margin-bottom: 2rem;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgb(177, 177, 177);
}

/* Make profile pic responsive */
@media (max-width: 768px) {
  .profile-pic {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .profile-pic {
    width: 120px;
    height: 120px;
  }
}

.side_option_bar:hover{
  width: 200px;
}




@media (max-height: 500px) {

  header,footer {
    height: 40px;
    background-color: #0febeb;
  }

  .main_stuff {
    height: 100vh;
  }

}
