* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: #373a3d;
    color: #fff;
    padding: 20px 0;
    text-align: center; 
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center; 
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

section {
    padding: 20px;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center; 
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-in-out;
}
.slide-up.active {
    opacity: 1;
    transform: translateY(0);
}
.image-row img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-row img:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.container {
    width: 80%;
    margin: auto;
}

h2 {
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center; 
}

form input, form textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%; 
    max-width: 400px; 
}

form button {
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background: #0056b3;
}

footer {
    text-align: center; 
    padding: 10px 0;
    background: #323436;
    color: #fff;
}

.profile-photo {
    width: 150px; 
    height: auto; 
    border-radius: 50%; 
    margin-bottom: 15px; 
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; 
    margin-top: 20px; 
}

.social-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.3s;
}

.instagram {
    background-color: #E1306C;
}

.instagram1 {
    background-color: #d7a94b;
}

.instagram2 {
    background-color: #0db1da;
}

.instagram3 {
    background-color: #4f4e4e;
}

.whatsapp {
    background-color: #25D366; 
}

.github {
    background-color: #333; 
}

.social-button:hover {
    opacity: 0.8; 
}

.image-row {
    display: flex;
    justify-content: center; 
    align-items: center; 
    margin-top: 20px; 
}

.image-row img {
    width: 30%; 
    height: auto; 
    margin: 0 10px; 
}

.image-container p {
    margin-top: 10px; 
    color: #333;
}