@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 80;
    font-family: 'Poppins', sans-serif;
    background-image: url(../images/animeee.png);
}

.container {
    padding: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
    align-items: center;
    flex-direction: column;
    margin-top: -40px;
}

.name {
    font-size: 25px;
    color: #fff;
    font-family: 'Poppins';
    margin-bottom: -20px;
    font-weight: bold;
    margin-top: -5px;
}

.profile-img {
    border-radius: 100%;
    margin-top: -5px;
    margin-bottom: 15px;
    transition: transform 0.2s ease-in-out; 
}

.profile-img:hover {
    transform: scale(1.1); 
}

.badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    color: transparent;
    margin: 0 5px; 
}

.social-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px; 
    margin-bottom: 1px;
}

.social-logo {
    width: 30px;
    height: 30px;
    margin: 0 3px; 
    color: #fff;
    transition: transform 0.2s ease-in-out; 
}

.social-logo:hover {
    transform: scale(1.1); 
}
