
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:wght@100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #141414;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content:center;
    color: white;
    font-family: 'Inter',sans-serif;
}
.black_box{
    background-color: #1f1f1f;
    opacity: 1;
    width: 100%;
    max-width: 400px;
    padding: 2em;
    border-radius: 20px;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.avatarimg > img{
    border-radius: 100px;
    width: 80px;
    height: 80px;
}
.text_1{
    font-size: 27px;
    font-weight: 400;
    letter-spacing: 0.1px;
    margin-bottom: -5px !important;
}

.text_2{
    color: #a5c63b;
    font-weight: bold;
    margin-bottom: 16px !important;
}

.text_3{
    color: #d7d7d7;
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 400;
}

.social_box {
    width: 100%;
    height: 50px;
    background-color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


@media (min-width: 722px) {
    .social_box:active {
        background-color: #a5c63b;
        color: black;
    }
    .social_box:hover {
        background-color: #a5c63b;
        color: black;
    }
}

@media (max-width: 721px) {
    .text_1, .text_2, .text_3 {
        font-size: 1em;
    }
}

