
body, h1, p, img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.profile-container {
    width: 350px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: Arial, sans-serif;
}
.profile-picture img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2px solid #ccc;
}
.profile-info h1 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.profile-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}
button
{
    width: 80px;
    margin: 20px 0;
    padding: 12px 0;
    font-size: 18px;
    font-weight: bold;
    background: #c1ab84;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    box-shadow: -2px 2px 6px #000;
}
button:hover
{
    background-color: #000;
}