@import url('https://fonts.google.com/specimen/Inter');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: "Inter", sans-serif;
}
.attribution {
    margin-top: 10px;
    color: hsl(0, 0%, 100%);
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: hsl(0, 0%, 8%);
    height: 100vh;
}
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: hsl(0, 0%, 12%);
    padding: 1.8rem;
    border-radius: 10px;
}

main .profile{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
main button{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
main .profile img{
    width: 80px;
    height: 80px;
    border-radius: 100%;
}
.profile h2{
    margin-top: 1.5rem;
    color: hsl(0, 0%, 100%);
    font-size: 1.6rem;
    font-weight: 600;
    
}
.profile h4{
    margin-top: 1rem;;
    color: hsl(75, 94%, 57%);
}
.profile p{
    margin-top: 1.6rem;
    color: hsl(0, 0%, 70%)
}
.buttons{
    margin-top: 1rem;;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    align-items: center;

}
.buttons button{
    font-weight: 700;
    background-color: hsl(0, 0%, 20% );
    color: hsl(0, 0%, 100%);
    padding: 0.8rem 5rem;
    width: 100%;
    border-radius: 10px;
    outline: none;
    border: none;
    cursor: pointer;
    box-shadow: 2px 2px 1px hsl(0, 0%, 20% );
}
button:hover{
    background-color: hsl(0, 0%, 30%);
    transition: all 0.3s ease;
}
@media (max-width: 400px){
    main{
        margin: 0 1rem;
    }
    .profile p{
        font-size: 0.8rem;
    }
    .buttons button{
        font-size: 0.8rem;;
    }
}