body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

header {
    padding: 50px 20px;
}

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

.profile h1 {
    margin: 20px 0 10px 0;
    font-size: 2em;
}

.profile p {
    font-size: 1.1em;
    color: #555;
}

.social-icons {
    margin: 20px 0;
}

.social-icons a {
    color: #333;
    font-size: 2em;
    margin: 0 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #FFA500;
}

.buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background-color: #FFA500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #e59400;
}
