body{
    background: #888;
}


.profil-page{
    margin: 100px;
    display: flex;
    gap: 20px;
}
.profil-left_panel{
    flex: 1;
    background: #D14836;
    border-radius: 25px;
    color: white;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 25px;
    box-sizing: border-box;
    gap: 30px;
}
.profil-img{
    border-radius: 50%;
}
.profil-img img{
    border-radius: 50%;
    height: 160px;
    width: 160px;
    object-fit: cover;
}
.profil-name{
    color: white;
    font-family: 'Bebas Neue';
    font-size: 42px;
}
.profil-right_panel{
    flex: 3;
    background: white;
    width: 100%;
    border-radius: 25px;
    padding: 25px;
    box-sizing: border-box;
}
.badge_panel{
    background: white;
    width: 80%;
    min-width: 200px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
    padding: 25px;
    box-sizing: border-box;
    border-radius: 25px;
}
.badge_panel::after{
    content: 'Badges';
    color: #000;
    position: absolute;
    left: 0;
    top: 50%;
    font-family: 'Bebas Neue';
    font-size: 24px;
    transform: translate(-50%, -50%) rotate(270deg);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}
.badge_panel img{
    width: 50px;
    height: 50px;
    display: block;
}
.social-network_panel{
    font-size: 50px;
}
.profil-right_panel h3{
    font-family: 'Bebas Neue';
    font-size: 32px;
    display: block;
    border-bottom: #D14836 2px solid;
}
.profil-post_container{
    display: flex;
    justify-content: flex-start;
    justify-items: center;
    flex-wrap: wrap;
    padding-top: 30px;
    box-sizing: border-box;
    gap: 30px;
}
.profil-post{
    min-width: 250px;
    min-height: 100px;
    border: 1px #000 solid;
    border-radius: 25px;
    padding: 10px;
    box-sizing: border-box;
}
.profil-post h4{
    font-family: "Concert One", serif;
    font-size: 32px;
    display: block;
    border-bottom: #000 2px solid;
    color: #D14836;
}
.profil-post p{
    font-family: "Roboto", serif;
    font-size: 16px;
}

@media (max-width: 767px) {
    .profil-page{
        margin: 10px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .profil-right_panel{
        padding: 5px;
        flex: 1;
    }
}