body{
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: rgb(127, 172, 255);
}

header{
    background: #222;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
}

header.contaner{
    text-align: center;
}

.profile-pic{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
}

header h1{
    margin: 0;
    font-size: 2.4rem;
}

header p{
    margin: 0;
    font-size: 1.3rem;
}

nav ul{
    list-style-type:none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 1rem 0 0;
}

nav li{
    display: inline;
    margin: 0 15px;
}

nav ul li{
    margin: 0 1rem;
}

nav ul li a{
    color: white;
    text-decoration:none;
    font-weight: bold;
}

.nav-link{
    text-decoration: none;
    font-size: 18px;
    color:white;
    transition: color 0.3s ease,transform 0.3s ease;
}

.nav-link:hover{
    color: blue;
    transform: scale(1.1);
}

.section{
    padding: 2 rem;
    text-align: center;
}

.grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 1rem;
}

.photo-grid{
    display: grid;
    grid-template-columns:repeat(auto-fill,50px);
    gap: 5px;
    justify-content: center;
}

.photo-grid img{
    height:50px;
    width: 50px;
    object-fit: cover;
    border-radius: 5px;
}


.portfolio-item{
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    padding: 10px;
    text-align: center;
    height: auto;
    width: 100%;
    margin-top: 10px;
    font-size: 1rem;
    color: black;
}

footer{
    background: #222;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Style for the social links container */
.social-links {
    text-align: center;
    padding: 2px;
  }
  
  .social-icon {
    font-size: 24px;
    margin: 0 15px;
    color: #333;
    transition: color 0.3s ease;
  }
  
  /* Hover effect on icons */
  .social-icon:hover {
    color: #ff6347;  /* Change color on hover */
  }

  form{
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: lightskyblue;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  form div{
    margin-bottom: 15px;
  }

  form label{
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }

  form input,form textarea{
    width: 100%;
    padding: 5px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  form button{
    padding: 10px 15px;
    font-size: 16px;
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  form button:hover{
    background-color: #005600;
  }