@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');


/* resets */
*,
*::after,
*::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    /* outline: 1px solid red; */
}

body{
    font-family: 'Inter',sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

img{
    display: block;
}

/* starter css */

: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%);
}

.wrapper{
    min-width: 100vw;
    min-height: 100vh;
    background-color: var(--grey-900);

    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    min-width: 350px;
    height: auto;

    background-color: var(--grey-800);

    border-radius: 20px;

    display: flex;
    flex-direction: column;

    align-items: center;

    margin: 20px;

}
.avatar_image{
    padding: 30px;
}

.avatar_image>img{
    border-radius: 50%;
    width: 80px;
}

.container >h1{
    color: var(--white);
}
.container >h2{
    color: var(--green);
    margin-top: 2px;
}
.container >p{
    margin-top: 20px;
    color: var(--white);
}

.buttons{
    display: flex;
    flex-direction: column;
    gap: 15px;

    justify-content: center;
    align-items: center;

    width: 100%;

    margin: 25px 0;
    margin-bottom: 35px;
}

.buttons>button{
    background-color: var(--grey-700);
    color: var(--white);

    width: 80%;

    height: 35px;

    border: none;
    border-radius: 7px;
}

.buttons>button:hover{
    background-color: var(--green);
    color: var(--grey-900);
}

