@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
    --primary-color: #8C50FF;
    --second-color: #0D0D0D;
    --color-white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

ul li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

.img-techtheory {
    position: absolute;
    left: 6%;
    top: 2vh;
}

.btn-compte-container {
    position: absolute;
    right: 0;
    margin-right: 50px;
    display: flex;
    align-items: center;
}

.btn-compte {
    font-weight: 600;
    color: var(--second-color);
    margin-left: 20px;
    transition: 0.3s;
}

.btn-compte:hover {
    color: var(--primary-color);
    transition: 0.3s;
}

.nav-menu-compte {
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 25px;
}

.img-avatar-nav {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.img-personne {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.btn-modif {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.modif {
    color: var(--color-white);
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 10px 10px;
    cursor: pointer;
    width: 300px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.modif a {
    color: var(--color-white);
}

.container-avatar {
    display: flex;
    margin-top: 100px;
    justify-content: center;
}

.h2-compte {
    color: var(--primary-color);
    text-align: center;
    font-size: 32px;
    margin-top: 75px;
}

.selection {
    display: flex;
    flex-direction: column;
}

.follow-creator, .comment, .disconnect {
    display: flex;
    flex-direction: row;
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}

.p-creator {
    margin-left: 10px;
    color: var(--second-color);
}

.p-avatar {
    color: var(--second-color);
    font-size: 20px;
    text-align: center;
    margin-top: 25px;
    font-weight: 600;
}

.avatar-personne {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.container-right {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
}

.h3-avatar {
    text-align: center;
    font-size: 20px;
    padding: 10px 0;
}

.img-predef {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 5px 10px;
}

.img-avatar {
    margin: 15px 25px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.img-avatar.select {
    border: 1px solid var(--second-color);
}

.right-part {
    margin-left: 100px;
}

.import-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px 0;
}

.p-import {
    font-family: 'Poppins', sans-serif;
    width: 260px;
    color: var(--primary-color);
    font-weight: 500;
}

.tips-photo {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 5px;
}