/** ================== prepare ================= */
@font-face {
    font-family: 'Inter';
    src: url(./assets/fonts/Inter-VariableFont_slnt\,wght.ttf);
}
:root{
    box-sizing: border-box;
}
/** ================== common ==================== */
body{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: hsl(0, 0%, 8%);
    box-sizing: border-box;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Inter';
    padding: 40px;
    background-color: hsl(0, 0%, 12%);
    border-radius: 10px;
    width: 240px;
    min-height: 320px;
    margin: 40px auto;
}

/** ================== heading ==================== */

.container img{
    border-radius: 50%;
    margin: 0 auto;
    width: 70px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.heading{
    margin-bottom: 15px;
}

.heading__name{
    color: hsl(0, 0%, 100%);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1px;
    font-size: 18px
}

.heading__address{
    color: hsl(75, 94%, 57%);
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 18px;
    font-size: 12px;
}

.heading__major{
    color:hsl(0, 0%, 100%);
    font-weight: 400;
    text-align: center;
    font-size: 11px;
}

/** ================== links ==================== */
.links{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    align-items: center;
}

.btn{
    color: white;
    font-weight: 500;
    padding: 10px;
    background-color: hsl(0, 0%, 20%);
    margin-bottom: 15px;
    width: 100%;
    display: block; 
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
    cursor: url('./assets/images/cursor.cur'), pointer;
}

.btn:hover{
    background-color: hsl(75, 94%, 57%);
    color: black;
}

@media(max-width: 375px){
    .container{
        width: 180px;
    }
}
