    * {
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }
    body {
      background: linear-gradient(to right, rgb(88, 216, 242), rgb(41, 225, 225), rgb(94, 195, 225));
      color: white;
      font-family: Arial, sans-serif;
    }
    header {
      width: 100%;
      background-color: rgba(255,255,255,0.345);
      backdrop-filter: blur(10px);
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 20px;
  
    }
    .logo-container img {
      width: auto;
      height: 70px;
      border-radius: 50%;
      border: 2px solid gainsboro;
      
    }
    .logo-container {
      position: relative;
    }
    .logo-container::before {
      content: "";
      position: absolute;
      top: -5px;
      left: -3px;
      width: 75px;
      height: 75px;
      border-radius: 50%;
      animation: changecolor 3s linear infinite;
    }
    @keyframes changecolor {
      0% {
        border-top: 3px solid rgb(14, 65, 233);
        border-bottom: 3px solid blue;
        transform: rotate(0deg);
      }
      100% {
        border-left: 3px solid red;
        border-top: 3px solid transparent;
        border-right: 3px solid red;
        border-bottom: 3px solid transparent;
        transform: rotate(360deg);
      }
    }
    nav{
      margin-top: 10px;
      display: flex;
      gap:40px;
    }
    nav p {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
    }
    .home-text {
      position: relative;
      font-size: 20px;
      font-style: italic;
      font-weight: 500;
    }
    .text:hover{
      border-left: 2px solid blue;
      border-bottom: 2px solid blue;
      padding: 3px;
      border-radius: 10px;
    }
    
    .home-text:hover .home-icon {
      visibility: visible;
   
      transition: transform 0.3s ease-in-out;
      transform: translateY(-20px);
    }
    
  
    .home-icon {
      visibility: hidden;
      position: absolute;
       top: -15px;
      transform: translateY(0);
      background-color: blue;
      padding: 3px 20px;
      border-radius: 5px;
      filter: drop-shadow(0px 0px 10px blue);    
    }
    @keyframes float{
  0%{
    transform: scale(0.9);
  }
  100%{
    transform: scale(1);
  }
    }
.home-icon::before{
  content: "▼";
  position: absolute;
 top:26px;
color:blue;
}
.text{
  font-size: 30px;
}

main{
  position: relative;
  margin-bottom:50px;
  display: flex;
  justify-content: space-around;
  align-items: center;

}
.profile-info{
  margin: 0;
}
.profile-info h1{
  color: rgb(111, 0, 109);
  padding: 20px;
  font-size: 36px;
  font-family: Arial, Helvetica, sans-serif;
 
}
.profile-info h2{
  color:rgb(40, 20, 219);
  font-variant: small-caps;
  font-size: 30px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-style: italic;
  text-indent: 30px;
}
.profile-info p{

  color:rgb(61, 36, 85);
  padding: 5px;
  text-indent: 32px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 20px;
  font-style: italic;
}
.profile-info .titles{
  margin-top: 20px;
}
.act-btn{
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
}
.act-btn button{
  padding: 10px;
  border: none;
  color: #d7d7f2;
  background: rgb(41, 41, 156);
  border-radius: 5px;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  outline: 2px solid blue;
  border: 2px solid rgb(0, 162, 255);
}
.act-btn button:hover{
  background-color:rgb(31, 31, 78);

}

.profile-image img{

  margin-top: 100px;
  padding: 0;
  width:auto;
  height: 400px;
  border-radius: 50%;
background:linear-gradient(to top,rgb(56, 56, 106),rgb(6, 6, 171),rgb(50, 50, 142)) ;
border: 3px solid blue;
filter:  drop-shadow(0px 0px 20px blue);
animation : toggle 2s linear infinite;
transition: all 0.3s ease-in-out;
}
@keyframes toggle{
  0%{
    transform: translateX(0);
  }
  50%{
        transform: translateY(-10px);

  }
}
.social-media{
display: flex;
padding: 20px;
margin-left: 30px;
gap:20px;
}
.social{
  display: flex;
  background: rgb(85, 33, 33);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;

}
.social:hover{
  background-color: rgb(125, 16, 53);
  color:yellow;


}
.skills-container{
  margin: 10px;
  border-radius: 10px;
  padding: 20px;
  background-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.skills-container h1{

  text-align: center;
  color: rgb(10, 77, 77);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-style: italic;
  
}

.skill,.project{
 
    box-shadow: 0px 0px 10px blue;
  text-align: center;
  background-color: rgba(45, 135, 188, 0.226);
  backdrop-filter: blur(10px);
  border-radius: 10px;
padding: 10px;
transition: all 0.3s ease-in-out;
 
}
.skills,.projects{
    display: grid;
    justify-content: center;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.skills i{
  border-radius: 50%;
  border:1px solid  ;
  padding: 10px;
  display: flex;
  font-size: 40px;
  color: rgb(75, 109, 40);
  background-color: rgb(44, 44, 128);
}
.project,.skills h2{
  color:rgb(95, 57, 57);
}
.skill-icon-container{
  font-size: 25px;
  font-style: italic;
  display: flex;
  justify-content: center;
  gap:20px;
  align-items: center;
}
.project,.skills p{
  font-weight: 600;
  padding:5px;
  font-style: italic;
  color: rgb(36, 32, 53);
}
.skills h3{
  font-family: 'Times New Roman', Times, serif;
  font-size: 40px;
  font-style: italic;
  color: rgb(20, 20, 198);
}
.project:hover,.skill:hover{
  transform:  scale(1.1);
}

.project-container{
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 20px;
}
.project-container h1{
  text-align: center;
  color:rgb(71, 71, 109);
  font-size: 35px;
  opacity: 1;
  font-style: italic;
  padding: 20px;
}
.project{
  cursor: pointer;
  background-color: rgba(137, 145, 162, 0.714);
  outline:1px solid    rgb(93, 44, 218);
  box-shadow: 0 0 10px rgb(193, 41, 41);
  transition: all 0.3s ease-in-out;
}
.project h2{

  color: #5a0db1;
text-shadow: 0px 0px 5px;
text-decoration: underline dotted;
text-decoration-color:rgb(4, 255, 63) ;
text-decoration-style:dashed ;
}
.project p{
  color:white;
  padding: 5px;
}
.project:hover{
  opacity: 0.5;
}
.project button{
margin: 20px;
  background:rgb(119, 41, 77);
  padding: 7px;
  border-radius: 5px;
  outline: 2px solid blue;
transition: all 0.3s ease-in-out;
cursor: pointer;
}
.project button:hover{
  opacity: 0.9;
  background-color:rgb(25, 6, 15);
}
.project button:active{
  transform: scale(1.1);
}

.progress  {
  margin: 20px;
  text-align: center;
  background: rgba(255,255,255,0.5);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  padding: 10px;
}
.progress h1{
    text-align: center;
  color:rgb(71, 71, 109);
  font-size: 35px;
  opacity: 1;
  font-style: italic;
  padding: 20px;
}
.internship-container{
  text-align: center;
  border: 2px solid black;
  margin: 0 40px;
  padding: 5px;
  border-radius: 10px;

}

.progress table {
 
  border: 1px solid rgb(167, 167, 209);
  text-align: center;
  padding: 10px;
  border-radius:10px ;
  cursor: pointer;

}
.progress table  tr th{
  font-size: 30px;
  font-style: italic;
  border: 1px solid blue;
  border-radius: 10px;
  padding: 3px;
  color: black;
 
}

.progress table  tr td{
  font-size: 25px;
  border: 1px solid rgb(147, 147, 247);
  border-radius: 10px;
  padding: 3px;
  color: rgb(56, 37, 152);
  transition: all 0.3s ease-in-out;
 
}
.progress table tr td:hover{
  background-color: #5a0db1;
  color:white


}
.internship-container{
  border: none;
  margin: 0;
}
.about-us{
  text-align: center;
}
.about-us img{
  width:auto;
  height:200px;
  border-radius: 50%;
  background: linear-gradient(to top , rgb(9, 9, 105),rgb(13, 13, 210),#030314,rgb(49, 49, 82));


}
.about-us h1{
    text-align: center;
  color:rgb(71, 71, 109);
  font-size: 35px;
  opacity: 1;
  font-style: italic;
  padding: 20px;
  
}
 .about-us h2 .value{
  font-size: 30px;
  padding: 3px;
  color:#5a0db1
 }
  .about-us h2 {
  font-size: 25px;
  padding: 3px;
  font-variant: small-caps;
  color:#2f095a
 }
 footer{
  margin: none;
 }




/* mobile device */
    
@media screen and (max-width:600px) {
 
  header{
    margin: 0;
position: fixed;
bottom: 0;
width:100%;
z-index: 1;
  }
 .logo-container{
  display: none;
 }
 .home-text{
  gap: 10px;
 }
 .home-text,.text{
  font-size:18px;
 
 }
 nav {
  gap:20px;
  justify-self: start;

 }
  
 main{
  flex-direction:column;
 }
 .profile-image img{
  margin: 20px;
  height: 300px;
 }

 .skills{
  grid-template-columns: repeat(1,1fr);
 }
 .projects{
  grid-template-columns: repeat(1 ,1fr);
 }
 .progress table tr  th{
  font-size: 10px;
 }
  .progress table tr  td{
  font-size: 10px;
 }
 .progress{
  margin: 0;
  width:100%
 }
 .progress table{
  margin: 0;
 }

 .about-us h2 .value{
  font-size: 10px;
  padding: 3px;
  color:#5a0db1
 }
  .about-us h2 {
  font-size: 10px;
  padding: 3px;
  color:#2f095a
 }
}
a{
  text-decoration: none;
  color: white;

}