* {
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}
body {
    background-color: hsl(0, 0%, 8%);
    color: hsl(0, 0%, 100%);
    width: 100vw;
    height: 100vh;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    overflow: hidden;
}
a {
    text-decoration: none;
    color: white;
}
.social-card {
    position: relative;
    background-color: hsl(0, 0%, 12%);
    margin: 0 auto;
    text-align: center;
    width: 25rem;
    padding: 1.5rem;
    border-radius: 1.2rem;
    
}
.profile-img {
    width: 25%;
    border-radius: 50%;
    margin: 0.63rem;
}
h1 {
    font-weight: 400;
    margin: 0;
    margin-bottom: -0.63rem;
}
.address {
    padding: 0;
    font-weight: 600;
    color: hsl(75, 94%, 57%);
    margin-bottom: -0.63rem;
}

.link {
    margin: 1rem auto;
    background-color: hsl(0, 0%, 20%);
    max-width: 90%;
    border-radius: 0.6rem;
    font-weight: 700;
    padding: 1rem;
}
p {
    font-size: 0.88rem;
    padding: 1.25rem 0;
}


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

@media screen and (width <= 600px) {
    body {
        padding: 1rem;
    }
    .social-card {
        width: 90%;
    }
}