* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    background-color: rgb(8, 8, 8);
}



@media screen and (max-width: 320px) {

  body {
    font-size: 16px;
    padding: 0;
    margin: 0;
  } 
}


#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fdfbfb;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 3s ease;
}

#loader img {
    width: 100px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hide loader when done */
body.loaded #loader {
    opacity: 0;
    pointer-events: none;
}

.box {
    padding: 40px;
    background-color: #f5f5f5;
    text-align: center;
    font-size: 24px;
}


.box {
    background-color: lightblue;
}


@media (max-width: 768px) {
    .box {
        background-color: lightcoral;
        font-size: 18px;
        padding: 0;
        margin: 0;
    }
}
 .navbar a.active{
      color: rgb(120, 4, 131);
    }

.navbar a:hover{
    color: rgb(120, 4, 131);
}





.navbar ul {
    display: flex;
    justify-content: end;
    padding-top: 0px;
    padding-right: 20px;



}

.navbar ul li {
    list-style: none;
    margin-left: 35px;
    padding-top: 20px;
    margin-top: 20px;

}

.navbar a {
    font-size: 30px;
    font-weight: 500;
    transition: 0.5s;
    text-decoration: none;
    color: rgb(201, 201, 172);
}



.social-links {
      display: flex;
      flex-direction: column;
      align-items: start; /* left-align */
      gap: 15px;
      margin: 40px;
    }

    .social-links a {
      text-decoration: none;
      color: #333;
      font-size: 18px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: 0.3s;
    }

    .social-links a:hover {
      color: rgb(201, 201, 172); /* LinkedIn blue */
    }

    .social-links i {
      font-size: 24px;
    }

