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

body {
    background-color: hsl(0, 0%, 8%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    font-family: 'Inter';
    font-size: 14px;
    min-height: 100vh;
}
.main {
    display: flex;
    flex-direction: column;
    background-color: hsl(0, 0%, 12%);
    gap: 10px;
    align-items: center;
    border-radius: 10px;
    padding: 30px;
}
.avatar {
    width:  30%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}
.attribution {
    position: fixed;
    bottom: 0;
}
.btn {
    background-color: hsl(0, 0%, 20%);
    color: white;
    width: 100%;
    padding: 10px;
    border: none;
    font-weight: 600;
    border-radius: 7px;
}
.btn:hover {
    color: black;
    background-color: hsl(75, 94%, 57%);
    cursor: pointer;
}
@media (max-width: 375px) {
    .main {
        width: 70%;
        max-width: 400px;
        padding: 5vw;
    }
    
    .avatar {
        width: 70px;
        height: 70px;
    }
}