*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #141414;
    color: #ffffff;
    height: 100vh;
    display: grid;
    place-items: center;
    grid-template-columns: auto;
}

.profile {
    background-color: #1f1f1f;
    max-width: 35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
    border-radius: 10px;
}

.profile-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.profile-location {
    color: #c5f82a;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.profile-bio {
    font-size: 1.199rem;
    margin-bottom: 2rem;
}

.profile-links {
    list-style: none;
    font-size: 1.4rem;
}

.profile-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 9rem;
    background-color: #333333;
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.3s ease;

}

.profile-link:hover,
.profile-link:active {
    cursor: pointer;
    background-color: #c5f82a;
    color: #141414;
    transform: scale(1.05);
}

.attribution {
    font-size: 1.4rem;
    text-align: center;
}

.attribution a {
    color: lightsalmon
}

@media only screen and (max-width: 375px) {

    html {
        font-size: 56.3%;
    }
}