@import url(../assets/fonts/font.css);

@media (max-width: 375px) {

    .main-container{
        max-width: 100%;
        height: 100vh;
    }

    .card-body{
        max-width: 335px;
        
    }

    .social-links a:active{
        background-color: hsl(75, 94%, 57%);
        color: hsl(0, 0%, 8%);

    }
}

*{
    font-family: "Inter", sans-serif;
    font-weight: normal;
    color: hsl(0, 0%, 100%);
}

body{
    margin: 0;
    background-color: hsl(0, 0%, 8%);
}

.main-container{
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 1440px;
    height: 100vh;
    margin: auto;
}

.card-body{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    width: 400px;
    height: 650px;
    background-color: hsl(0, 0%, 12%);
    border-radius: 15px;
}

.profile-info{
    display: block;
    box-sizing: border-box;
    text-align: center;
    width: 100%;
    max-height: fit-content;
}

.profile-info img{
 
    width: 100px;
    height: 100px;
    border-radius: 50px;
    margin: 30px auto;
    display: flex;
}

.profile-info h1{
    font-weight: bold;
}

.profile-info .location{
    font-size: 14px;
    font-weight: bold;
    color:  hsl(75, 94%, 57%);
}

.profile-info .bio{
    font-size: 14px;
    font-weight: bold;

}

.social-links{
    width: 100%;
    max-height: fit-content;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.social-links a{
    text-decoration: none;
    color: hsl(0, 0%, 100%);
    font-size: 14px;
    font-weight: bold;
    padding: 10px 0;
    background-color: hsl(0, 0%, 20%);
    width: 86%;
    height: 30px;
    text-align: center;
    font-size: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;

   

}

.social-links a:hover{
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
}