@font-face {
    font-family: "Inter-Bold";
    src: url("/assets/fonts/static/Inter-Bold.ttf");
}

@font-face {
    font-family: "Inter-Regular";
    src: url("/assets/fonts/static/Inter-Regular.ttf");
}

@font-face {
    font-family: "Inter-SemiBold";
    src: url("/assets/fonts/static/Inter-SemiBold.ttf");
}

@font-face {
    font-family: "Inter-Variable";
    src: url("/assets/fonts/Inter-VariableFont_slnt\,wght.ttf");
}

:root {
    --green-color: hsl(75, 94%, 57%);
    --grey-700: hsl(0, 0%, 20%);
    --grey-800: hsl(0, 0%, 12%);
    --grey-900: hsl(0, 0%, 8%);
    --paragraph-size: 14px;
    --font-Bold: "Inter-Bold", sans-serif;
    --font-Regular: "Inter-Regular", sans-serif;
    --font-SemiBold: "Inter-SemiBold", sans-serif;
    --font-Variable: "Inter-Variable", sans-serif;

}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--grey-900);
    height: 100vh;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.container {
    border-radius: 15px;
    width: 20%;
    height: fit-content;
    background-color: var(--grey-800);
}
.text-area{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.avatar-area {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.avatar {
    width: 23%;
    border-radius: 100%;
}
.name-area{
    display: flex;
    justify-content: center;
}
.about-area{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.text-name{
    color: white;
    font-family: var(--font-Variable);
    font-weight: 500;
    text-align: center;
    margin: 0;
}
.text-placement{
    font-family: var(--font-Bold);
    color: var(--green-color);
    text-align: center;
    margin: 0;
}
.text-description{
    font-family: var(--font-SemiBold);
    color: rgb(197, 197, 197);
    font-weight: 200;
    text-align: center;
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.3px;
}
.buttons-area{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}
.link-button{
    padding: 15px;
    width: 80%;
    background-color: var(--grey-700);
    color: white;
    font-family: var(--font-Bold);
    border: 0;
    border-radius: 10px;
    font-weight: bold;
    letter-spacing: 0.3px;
}
.git-button{
    transition: all 0.3s;
}
.git-button:hover{
    background-color: #171515;
    cursor: pointer;
}
.mentor-button{
    transition: all 0.3s;
}
.mentor-button:hover{
    background-color: #3d54a2;
}
.linkedln-button{
    transition: all 0.3s;
}
.linkedln-button:hover{
    background-color: #0A66C2;
}
.twitter-button{
    transition: all 0.3s;
}
.twitter-button:hover{
    background-color: #1DA1F2;
}
.instagram-button{
    transition: all 0.3s;
}   
.instagram-button:hover{
    transition: all 0.3;
    background-color: #E1306C
}
@media only screen and (max-width: 1300px) and (min-width:1000px) {
    .container {
        border-radius: 15px;
        width: 35%;
        height: fit-content;
        background-color: var(--grey-800);
    }
}
@media only screen and (max-width: 1000px) and (min-width:500px) {
    .container {
        border-radius: 15px;
        width: 50%;
        height: fit-content;
        background-color: var(--grey-800);
    }
}
@media only screen and (max-width: 499px) {
    .container {
        border-radius: 15px;
        width: 95%;
        height: fit-content;
        background-color: var(--grey-800);
    }
    .link-button{
       width: 90%;
    }
    .avatar{
        width: 28%;
    }
}