* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: hsl(0, 0%, 8%);
    font-family: "inter", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

.card {
    background-color: hsl(0, 0%, 12%);
    padding: 1.5rem;
    max-width: 400px;
    text-align: center;
    border-radius: 1rem;
}

.profile-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.profile-name {
    color: white;
    font-size: 1.25rem;
    margin-top: 20px;
}

.location {
    color: hsl(75, 94%, 57%);
    margin-top: 10px;
    align-items: center;
    font-size: 0.9rem;
}

.description{
    color: hsl(0, 0%, 80%);
    margin-top: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.button {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
    justify-content: space-between;
}

.button_item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.4rem 1rem;
    width: 100%;
}

.button_links {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background-color: hsl(0, 0%, 20%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
}

.button_links:hover {
    background:hsl(75, 94%, 57%);
    transition: all 0.3s ease;
}

footer a {
    color: hsl(228, 45%, 44%);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .card {
        width: 90%;
        padding: 1rem;
    }

    .profile-image img {
        width: 80px;
        height: 80px;
    }

    .profile-name {
        font-size: 1.1rem;
    }

    .location {
        font-size: 0.85rem;
    }

    .description {
        font-size: 0.85rem;
    }

    .button {
        flex-direction: column;
        gap: 10px;
    }

    .button_item {
        width: 100%;
        padding: 0.5rem 0;
    }

    .button_links {
        font-size: 0.85rem;
    }
}
