@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Figtree';
}

body {
    background: hsl(47, 88%, 63%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    background: hsl(0, 0%, 100%);
    padding: 15px;
    max-width: 345px;
    border: 1px solid black;
    border-radius: 15px;
    box-shadow: 10px 10px 0 black;
}

.img img {
    width: 100%;
    border-radius: 10px;
}

h2 {
    display: inline-block;
    font-size: 16px;
    background: hsl(47, 88%, 63%);
    border-radius: 5px;
    padding: 4px 4px;
    margin: 20px 0px 10px 0px;
}

h1 {
    margin: 20px 0px 20px 0px;
}

h1:hover {
    color: hsl(47, 88%, 63%);
    cursor: pointer;
}

p {
    font-size: 16px;
}

.description {
    color: hsl(0, 0%, 42%);
}

.avatar-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0px 10px 0px;

}

.avatar-icon img {
    width: 25px;

}

.avatar-icon p {
    font-size: 14px;
    font-weight: bold;
}

.attribution {
    text-align: center;
    margin-top: 15px;
}

.attribution a:hover {
    color:hsl(0, 0%, 100%);
    cursor: pointer;
}