html,
body {
    background-image: linear-gradient(hsl(322, 97%, 12%), hwb(0 73% 24% / 0.969), hwb(0 91% 5%), );
}
.social-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  background: #eee;
  color: #000;
  margin: 0 10px;
  transition: transform 0.3s;
}

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


.project-sidebar {
  position: fixed;
  top: 100px;
  left: 50px;
  width: 550px;
  height: 400px;
  z-index: 1000;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 15px #ef0707f4;
  background: white;
}

.project-sidebar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
  cursor: pointer;
  border-radius: 10px;

}


h1 {
    text-align: center;
    font-size: 3.5em;
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 20px;


    background: linear-gradient(90deg, #8e2de2, #4a00e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;


    text-shadow: 2px 2px 6px #dd277cf2;


    transition: transform 0.3s ease-in-out;
}


h1:hover {
    transform: scale(1.05);
}


h2 {
    text-align: center;
    font-size: 4em;
    margin-top: 40px;
    animation: spinEarth 6s linear infinite;
    color: #4a00e0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}


@keyframes spinEarth {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.div-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.div-images img {
    width: 350px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    padding: 40px;
    border-radius: 50px;
    margin: 0 30px;
    flex-wrap: wrap;
    
    box-shadow: 0 10px 20px #e90202b4;
    transition: transform 0.4s ease, box-shadow 0.4s ease;

}

.div-images img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.div-images img {
    animation: float 3s ease-in-out infinite;
}