@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

body{
    height: 100vh;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: hsl(0, 0%, 8%);
    color: #fff;
}

main{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 25px;
    height: fit-content;
    width: 300px;
    padding: 40px 50px;
    border-radius: 20px;
    background-color: hsl(0, 0%, 12%);
}

h1{
    font-weight: 700;
}

img{
    border-radius: 50%;
    width: 62px;
    margin-bottom: 12px;
}

.profile,span, button{
    color: hsl(0, 0%, 100%);
}

span{
    font-weight: 400;
}

.profile>span{
    font-weight: 600;
    color: hsl(75, 94%, 57%);
}

.btns{
    width: 100%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.button{
    color: #fff;
    text-decoration: none;
    width: 100%;
    border-radius: 10px;
    border: none;
    padding: 12px;
    font-weight: bold;
    background-color: hsl(0, 0%, 20%);;
}

.button:hover{
    background-color: hsl(75, 94%, 57%);
    color:hsl(0, 0%, 12%);
    cursor: pointer;
}

@media (max-width: 375px){
    main{
        width: 250px;
    }
}