body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #333;
}

h1 {
    text-align: center;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.navbar {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.navbar a {
    margin: 0 15px;
}

.profile-picture {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 10px;
    border-radius: 5px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.comment {
    display: none;
  }

.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    text-decoration: none;
    color: #333;
}

.social-icons img {
    width: 40px;
    height: 40px;
    background: transparent; 
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1)); /* Adjust the shadow values as needed */
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}
  