@font-face{
    font-family: 'Inter';
    src: url('assets/fonts/static/Inter-Bold.ttf')
    format('truetype');
    font-weight: 700;
}

@font-face{
    font-family: 'Inter';
    src: url('assets/fonts/static/Inter-Regular.ttf')
    format('truetype');
    font-weight: 400;
}
@font-face{
    font-family: 'Inter';
    src: url('assets/fonts/static/Inter-SemiBold.ttf')
    format('truetype');
    font-weight: 600;
}
@font-face{
    font-family: 'Inter';
    src: url('assets/fonts/Inter-VariableFont_slnt\,wght.ttf')
    format('truetype');
    font-weight: 100 900;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.attribution {
    font-size: 11px;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
    background-color: #141414;
    font-family: "Inter",sans-serif;
}
h1{
    font-weight: 700;
    font-size: 20px;
    color: white;
    margin-top: 15px;
    margin-bottom: 7px;
}
.container{
    height: 449px;
    width: 288px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: hsl(0, 0%, 12%);
    border-radius: 10px;
}

.conta-buttt{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* height: 480px; 252 */
    width: 236px;
    gap: 12px;
}

img{
    width: 65px;
    height: 65px;
    border-radius: 60px;
    margin-top: 25px;
}

.texto-verde{
    color: hsl(75, 94%, 57%);
    font-size: 12px;
    font-weight: 700;
}
.texto-gray{
    color: #8C8C8C;
    font-size: 12px;
    font-weight: 100;
    margin-top: 18px;
    margin-bottom: 18px;
}



.button{
    width: 100%;
    border-radius: 5px;
    height: 35px;
    background-color: #333333;
    color: white;
    font-weight: 600;
    border-style: none;
    font-size: 12px;
    transition: 0.8s;
}

.button:hover{
    color: #1E2C07;
    font-weight: 600;
    background-color: hsl(75, 94%, 57%);
    transition: 0.8s;
}