html {
    height: 100%;
    background-image: url('assets/images/background.webp');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Karla', sans-serif;
    color: white;
    scroll-behavior: smooth;
}

.description,
.source {
    color: white;
    text-align: center;
    margin: 27px auto;
    margin-top: 10px;
    width: 100%;
    max-width: 469px;
}

.pfp img {
    height: 130px;
    display: block;
    margin: 35px auto 20px;
    border-radius: 50%;
}

.name {
    font-weight: bold;
    text-align: center;
}

.link {
    color: white;
    border: solid white 2px;
    border-radius: 10px;
    text-align: center;
    display: block;
    margin-bottom: 12px;
    padding: 10px;
    text-decoration: none;
}

@media (hover: hover) {
    .link:hover {
        background-color: #bca6a6;
    }
}