/* Profile-related styles */
body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
}

#hero1 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-container {
    text-align: center;
}

.profile-picture {
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

.username {
    font-size: 2em;
    margin: 10px 0;
}

.title {
    font-size: 1.5em;
    margin: 10px 0;
}

.social-icons img {
    width: 50px;
    height: 50px;
    margin: 0 10px;
}

.commissions-button {
    background-color: red;
    color: white;
    border: 2px solid red;
    border-radius: 50px;
    padding: 10px 40px;
    font-size: 1em;
    margin: 20px 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.commissions-button:hover {
    background-color: black;
    color: red;
    border: 2px solid red;
}

.commissions-button:active {
    transform: scale(0.95);
}

button:hover {
    opacity: 0.8;
}
