@media (max-width:375px){
    .dis{
        width: 375px !important; 
        font-size: 10px;
    }
    .container{
        width: 100% !important;
        height: 80% !important;
        background-color: var(--Darkgrey-color);
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;

    }
    .header{
        margin: .6rem !important;
        height: 30% !important;
        justify-content: center;
        align-items: center !important;
    }
    .header__img{
        width: 40px !important;
        height: 40px !important;
        margin: .4rem !important;
    }
    .header h1 {
        font-size: 10px;
    }
    .header h4 {
        font-size: 5px;

    }
    .header p{
        font-size: 5px;

    }
    .buttons{
        width: 80%;
        height: 60%;
        font-size: 8px;
        justify-content: center;
        align-items: center;
    }

    
    
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{

--green-color: hsl(75, 94%, 57%);
--White-color: hsl(0, 0%, 100%);
--Grey-color: hsl(0, 0%, 20%);
--Darkgrey-color: hsl(0, 0%, 12%);
--OffBlack-color: hsl(0, 0%, 8%);


}
body{
    height: 100vh;

}

.dis{
    width: 1440px;
    height: 100vh;
    display: flex;
    font-family: 'Inter', sans-serif;
    background-color: var(--OffBlack-color);
    font-size: 14px;
    justify-content: center;
    align-items: center;
}


.container{
    background-color: var(--Darkgrey-color);
    width: 30%!important;
    height: 80% !important;
    border-radius: .9rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 2rem  ;

}
.header{
    height: 40% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem;

}

.header__img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 1.2rem;
}
.header h1 {
    font-weight: 600;
    color: var(--White-color);
}
.header h4 {
    font-weight: 600;
    color: var(--green-color);
}
.header p{
    font-weight: 400;
    color: var(--White-color);
    padding-top: 1rem;
}
.buttons{
    width: 80%;
    height: 50%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.btn{
    width: 100%;
    height: 100%;
    margin: .3rem;
    background-color: var(--Grey-color);
    text-decoration: none;
    font-weight: 700;
    color: var(--White-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .4rem;
}
.btn:hover{
    background-color: var(--green-color);
}

