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

body{
    font-family: "Inter-Regular";
    font-size: 14px;
    font-weight: 600;
    margin: 0%;
    padding: 0%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: hsl(0, 0%, 8%);
}

.card{
    background-color:hsl(0, 0%, 12%);
    width: 20%;
    height: 40%;
    display: flex;
    flex-direction: column;
    place-items: center;
    text-align: center;
    border-radius: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 100px;
    margin-bottom: 20px;


}
.details img{
    display: block;
    width: 30%;
    margin: auto;
    border-radius: 100%;
}

.details #name{
    color: hsl(0, 0%, 100%);
}
.details #address{
    color: hsl(75, 94%, 57%);
    font-size: 10px;
}
.details #title{
    color: lightgray;
    font-size: 10px;
}
.links{

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.links a{
    color:hsl(0, 0%, 100%);
    text-decoration: none;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    font-size: 10px;
}

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

.links div{
    width: 80%;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin: 5px;
    background-color:hsl(0, 0%, 20%);;
}


.attribution {
    font-size: 11px;
    text-align: center;
    color: white;
}
.attribution a { color: hsl(228, 45%, 44%); text-decoration: none; }


@media (max-width: 375px){

    body{
        margin: 0%;
        padding: 0%;
        font-size: 14px;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: hsl(0, 0%, 8%);
    }
    
    .card{
        background-color:hsl(0, 0%, 12%);
        width:80%;
        height: 40%;
        display: flex;
        flex-direction: column;
        place-items: center;
        text-align: center;
        border-radius: 10px;
        padding-top: 30px;
        padding-bottom: 30px;
        margin-top: 50px;
        margin-bottom: 20px;
    }

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