:root{


    --Green: hsl(75, 94%, 57%);

    --White: hsl(0, 0%, 100%);

    --Grey_700: hsl(0, 0%, 20%);
    --Grey_800: hsl(0, 0%, 12%);
    --Grey_900: hsl(0, 0%, 8%);
}

@font-face {
    font-family: 'inter_variable';
    src: url(./assets/fonts/Inter-VariableFont_slnt\,wght.ttf);
}

*{

    margin: 0;
    padding: 0;
    line-height: 1.5;
}
body{
    font-family:'inter_variable', sans-serif;
    
    color: var(--White);
    background-color: var(--Grey_900);

}

.main_body{
    background-color: var(--Grey_900);
    max-width: 100%;
    height:95vh ;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.card{
    width: 400px;
    background-color: var(--Grey_800);
   border-radius: 13px;
   padding-top: 40px;
   padding-bottom: 30px;
  
}

.card>.heading_items>img{
    width: 90px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.card>.heading_items>h1{
    font-size: 1.5rem;
    font-weight:500;
}

.card>.heading_items>h2{
    font-size: .9rem;
    font-weight:600;
    color: var(--Green);
}

.card>.heading_items>p{
    font-size: .9rem;
    font-weight:200;

    margin-top: 25px;
    margin-bottom: 25px;
}



.selectors{
    width: 76%;
    background-color: var(--Grey_700);
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
}

.select>a{
    text-decoration: none;
    color: inherit;
   
}

.selectors:hover{
    background-color: var(--Green);
    color: var(--Grey_700);
    
}

.selectors:focus-visible  {
    border: 1px solid black;
    /* background-color: white; */
    color: var(--Grey_700);
}


