@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f3f4f6;
    color: #333;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #4CAF50;
    object-fit: cover;
}

h1 {
    margin: 15px 0 5px;
    color: #2c3e50;
    font-size: 24px;
}

.title {
    color: #7f8c8d;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.about h2, .links h2 {
    color: #4CAF50;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.about p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-5px);
}

.github { background-color: #333333; }
.linkedin { background-color: #0077b5; }
.email { background-color: #e74c3c; }