.content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    width: 70%;
}

.avatar img {
    height: 200px;
    border-radius: 100%;
    border: #2c3e50 solid 4px;
    user-select: none;
    animation: pulseGlow 5s infinite;
}

.aboutMe {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    color: #fff;
    width: 60%;
}

.aboutMe p {
    margin: 0px;
}

.aboutMe h3 {
    margin: 0;
    margin-top: 25px;
    font-size: 32px;
    font-weight: 400;
}

.btnContainer {
    margin-top: 25px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 70%;
}

.btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: red;
    min-width: 200px;
    min-height: 50px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #fff;
}

.btn img {
    height: 20px;
}

.btn p {
    font-weight: 500;
}

.btnIcon {
    user-select: none;
}

.btn:hover {
    transform: scale(1.02);
}


.discord {
    background-color: #5865F2;
    cursor: default;
}

.amazon {
    background-color: #FF9900;
}

.spotify {
    background-color: #1DB954;
}

.instagram {
    background-color: #E1306C;
}

.riot {
    font-size: 14px;
    background-color: #D13639;
    cursor: default;
}

.steam {
    background-color: #1B2838;
}

.paypal {
    background-color: #009CDE;
}

.counter {
    color: #fff;
    font-weight: 300;
    opacity: 0.6;
    font-size: 12px;
}

.counter span {
    font-weight: 500;
}

.likeButton {
    display: flex;
    justify-content: center;
    align-items: center;
    border: #9b59b6 solid 1px;
    width: 125px;
    margin: 0 auto;
    font-size: 13px;
    font-weight: 500;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 25px;
    background-color: #2c2c54;
    cursor: pointer;
    border-radius: 5px;
    user-select: none;
    color: #fff;
    opacity: 0.7;
    transition: opacity, transform 0.2s;
}

.likeButton:hover {
    opacity: 1;
    transform: scale(1.05);
}

.likeButton:active {
    transform: scale(1);
}

.likeButton_labels {
    display: flex;
    align-items: center;
    width: 70%;
    gap: 8px;
}

.likeButton_labels img {
    height: 14px;
    transition: all 0.3s;
}

.likeButton_counter {
    display: flex;
    justify-content: right;
    width: 30%;
}