:root {
  --text-color1: rgb(29, 115, 136);
  --text-color2: rgb(255, 255, 255);
 
  --backgroud-color: rgb(0, 0, 0);
}

html {
  scroll-behavior: smooth;
}
/*all*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;

}

body {
  background-color: var(--backgroud-color);
  justify-content: center;
   font-family:  'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*for the Header*/
.headD {
  display: flex;
  justify-content: space-between;
  align-items: center;  
  z-index: 100;
  padding: 0 50px;
  height: 50px;
  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;


  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(10px);
  
 
}

.headD .left a {
  font-size: 40px;
  font-weight: 600;
  color: var(--text-color1);
}

.headD .right a {
  color: var(--text-color2);
  margin: 0 10px;
}

a {
 
  text-decoration: none;
}


/*A HOVERHOVER Animation*/
.headD .right a:hover {
  color: rgb(133, 195, 239);
  transition: .3s;  
}
.headD .right a {
  position: relative;
  text-decoration: none;
  padding: 5px;
  transition: color 0.3s ease;
}

.headD .right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px; 
  background-color: var(--text-color1); 
  transition: width 0.5s ease;
}

.headD .right a:hover::after {
  width: 100%; 
}

.Headhead:hover{
  transform: translateY(-5px);
  transition: 1s;
  transform: scale(1.02);
  
}


/*SectionSizes
section {
  height: 100vh;
  padding-top: 80px;
 
}
*/

/*Responsive layou8t*/
@media (max-width: 768px) {
  .left {
    padding-bottom: 15px;
  }
  .headD {
    display: block;
    padding: 10px 20px;
    padding-bottom:120px ;

    
  }

    .headD .right{

     
      align-items: center;
      justify-content: space-around;
      
    }
  .headD .right a {
    color: var(--text-color2);
    margin: 0 0;
   
  }



}

/*Home Section*/


.HSection {
    align-items: center;
justify-content: space-between;
  padding: 0 50px;
  color: var(--text-color2);
}

.homeNav {
  display: flex;
  padding-top: 150px;
  align-items: center;
  justify-content: space-between;
}

.HSection h1 span{
    color: var(--text-color1);
  }

    .HSection .names{
   padding-bottom: 20px;
   font-size: 40px;
    }

.HSection .homeNav p {
  font-size: 20px;
  padding-bottom:20px;
  padding-right: 50px;
}

.Picmo {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--text-color1);
  box-shadow: 0 0 35px 5px var(--text-color1);
  cursor: pointer;
}
 
/*glowing btn*/
.btn1{
  display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
color: var(--text-color1);
  font-size: 10px;
  width: 200px;
  height: 50px;
 border-radius: 20px;
 border:solid 2px var(--text-color1) ;
 background-color: black;

 
}

.btn1:hover{
background-color: var(--text-color1);
  color: black;
  transition: .3s;
  cursor: pointer;
}


/*Picture Controller*/
.Headhead{
display: flex;
  justify-content: right;
}

.Picmo{
flex: 5px;
display: flex;
justify-content: right;
}


/*Home Screen fit*/
@media (max-width: 850px) {
  .HSection {
    display: block;
    text-align: center;
    padding-top:80px;
 
  }
  .Picmo {
    
    width: 230px; 
    height: 230px;
  }

 .whoknows h1, p {
  
justify-content: left;
  align-items: left;
  text-align:left;
}
.homeNav {
  flex-direction: column;
  }
  .Headhead{
    order: -1;
    padding-bottom: 70px;
  }



}













/*About me Section*/
.About_me{
 display: flex;
  align-items: center;
justify-content: center;

 
 
}
.aboutNav{
  align-items: center;
  justify-content: space-between;
  display: flex;
  padding-right: 50px;
  padding-left: 50px;
  color: var(--text-color2);
}

.JavaSensee{
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

#About_me{
 margin-top: 200px;
}

.h1About{
  font-size: 40px;
  margin-bottom: 30px;
}
 
/*PIcute textDetails*/
.infoA{
  margin-right: 50px;
  font-size: 20px;
}


/*PIcute logoo*/

#About_me .aboutNav .JavaSensee img{
  width: 300px;
  height: 300px;
  border-radius: 5px;
  object-fit: cover;
  border: 3px solid black;
  box-shadow: 0 0 10px 5px var(--text-color1 );
  cursor: pointer;
  margin-bottom: 30px;
}

