


.attribution {
    font-size: 11px;
    text-align: center;
    position: relative;
    bottom: -100px;
}

.attribution a {
    color: hsl(61, 100%, 56%);
}

:root {
    --color-green: hsl(75, 94%, 57%);
    --color-white: hsl(0, 0%, 100%);
    --color-grey-700: hsl(0, 0%, 20%);
    --color-grey-800: hsl(0, 0%, 12%);
    --color-grey-900: hsl(0, 0%, 8%);
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--color-grey-900);
    color: var(--color-white);
    position: relative;
    
}

.page {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 70px;
}

p {
    font-size: 14px;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-grey-800);
    padding: 20px;
    border-radius: 10px;
    width: 350px;
}

.tabs {
    width: 300px;
    height: 45px;
    background-color: var(--color-grey-700);
    border-radius: 5px;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 10px 0;
}

.tabs a {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 400;
}

.tabs:hover {
    background-color: var(--color-green);
}

.tabs:hover a {
    color: var(--color-grey-900);
}

.location {
    color: var(--color-green);
}

.profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}


.card h2 {
  margin-bottom: 8px; 
}

.card h4.location {
  margin-top: 0px; 
}

@media screen and (max-width: 600px) {
    .card {
        width: 90%;
        padding: 15px;
    }
    
    .tabs {
        width: 100%;
        height: 40px;
    }
    
    .profile img {
        width: 80px;
        height: 80px;
    }
    
    .card h2 {
        font-size: 20px;
    }
    
    .card h4.location {
        font-size: 14px;
    }
    
}