*,*::after,*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: inter;
    src: url(./assets/fonts/Inter-VariableFont_slnt,wght.ttf);
}
:root{
    --black:#101010;
    --gray:#252424;
    --light-gray:#3d3c3c;
    --lemon: #AFD045;
    --text-dark: #A8A8A8;
    --text-light:#ffffff;
}
body{
    color: var(--text-light);
    font-family: inter,sans-serif;
    margin: 0px;
    min-height: 100vh;
    background-color: var(--black);
    display: grid;
    place-content: center;
    /* display: flex;
     flex-direction: column;
    justify-content: center;
    align-items: center; */
}

main{
    width: 18rem;
    display: flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:1rem;

    background-color: var(--gray);
    padding: 1.5rem;
    border-radius: 0.7rem;
}
img{
    width:5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
}
h1{
    font-size: 1.2rem;
}
h3{
        font-size: 0.7rem;
    color: var(--lemon);
    margin-top: -0.4rem;
    margin-bottom: 0.4rem;
    }
    p{
            font-size: 0.6rem;
    }
    .socials{
        display: flex;
        flex-direction: column;
        gap:0.7rem;
        width: -webkit-fill-available;
    }
a{
    text-decoration: none;
    display: block;
    color: var(--text-light);
    background-color: var(--light-gray);
    text-align: center;
    padding: 0.6rem;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 0.3rem;
    cursor: pointer;
    transition: all 0.3s ease-out;
}
a:hover{
    background-color: var(--lemon);
    color: var(--black);
}
@media (max-width:600px) {
    main{
        width: 15rem;
        padding: 1rem;
    }
}
