body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.title {
    display: flex;
    align-items: center;
    margin-bottom: 75px;
    font-size: 48px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.name {
    font-size: 2em;
    margin-right: 20px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #333;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.linkedin {
    background-color: #0077b5;
}

.github {
    background-color: #333;
}

.gmail {
    background-color: #ea4335;
}

.btn:hover {
    opacity: 0.8;
}

.footer {
    margin-top: 50px;
}