body {
    background-color: #020035;
}

h1 {
    color: #ED4B00;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    font-family: Montserrat;
    font-size: 120px;
    font-style: normal;
    font-weight: 800;
    padding: 0px;
    margin: 0px;
}

#profile-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#profile-hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 196px;
}

.audience-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

#profile-image-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#profile-image-container img {
    position: absolute;
}

#profile-image-container img:nth-child(1) {
    width: 250px;
    height: 250px;
}

#profile-image-container img:nth-child(2) {
    width: 270px;
    height: 270px;
}

#profile-image-container img:nth-child(3) {
    width: 280px;
    height: 280px;
}

#influencer-stats-bar {
    width: 100%;
    height: auto;
    padding: 10px 0;
    background: rgba(2, 6, 111, 0.59);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.stats-item {
    width: 160px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.stats-item p {
    color: #D9D9D9;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.stats-divider {
    width: 1px;
    height: 80px;
    background-color: #D9D9D9;
    margin: 0 20px;
}

