body
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color:rgb(3, 3, 3);
    text-align: center;
}
.container
{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color:rgb(43, 39, 39);
    width: 300px;
    border-radius: 10px;
    color: #ffffff; /* White */
}
.profile-image-container
{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}
.profile-image
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
h1 {
    margin: 10px 0;
    color: #ffffff; /* White */
}
h3 {
    margin: 10px 0;
    color: green; /* You can also use hex: #00ff00 */
}

button.social
{
    background-color:rgb(75, 77, 80);
    color: white;
    border: none;
    width: 100%;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
button.social:hover
{
    background-color: #0056b3;
}
.attribution {
        font-size: 11px;
        text-align: center;
        color: hsl(228, 45%, 44%);
      }
.attribution a {
        color: hsl(228, 45%, 44%);
      }