html {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

* {
    font-family: "Inter", serif;
    color: hsl(0, 0%, 100%);
    font-size: 14px;
}


body {
    background-color: hsl(0, 0%, 8%);
}

.main {
    display: flex;
    flex-direction: column;
    background-color: hsl(0, 0%, 12%);
    border-radius: 15px;
    max-width: 20rem;
    min-width: 320px;
    margin: 3rem auto;
    padding: 30px;
    text-align: left;
}

.img_container {

    display: flex;
    justify-content: center;
    height: 90px;
    margin: 10px 0;
}

img {
    border-radius: 50%;

}

.description_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0 0 0;
}

.description_title {
    font-size: 24px;
    font-weight: 400;
    margin: 15px 0 10px 0;
}

.description_subtitle {
    color: hsl(75, 94%, 57%);
}

.description_text {
    margin: 30px 0 10px 0;
}

.link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0.625rem;
    height: 45px;
    margin: 15px 0 10px 0;
    text-align: center;
    line-height: 1.25rem;
    background-color: hsl(0, 0%, 20%);
    color: hsl(0, 0%, 100%);
    font-weight: 600;
    text-decoration: none;
}

.link:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 20%);
}

.attribution {
    font-size: 11px;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}