@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

:root {
    --Green: hsl(75, 94%, 57%);
    --White: hsl(0, 0%, 100%);
    --Grey-700: hsl(0, 0%, 20%);
    --Grey-800: hsl(0, 0%, 12%);
    --Grey-900: hsl(0, 0%, 8%);
}

a {
    text-decoration: none;
    color: var(--White);
    transition: all 300ms ease;
}



body {
    background-color: var(--Grey-900);
    color: var(--White);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.main {
    background-color: var(--Grey-800);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 700px;
    width: 400px;
}

img {
    border-radius: 50%;
    width: 100px;
    margin-bottom: 20px;
}

h1 {
    font-weight: 500;
}

.city {
    color: var(--Green);
    font-weight: 600;
    margin-bottom: 24px;
}

.about__section {
    font-weight: 300;
    margin-bottom: 30px;
}

.links {
    width: 100%;

}

ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 300px;
}

li {
    list-style: none;
    text-align: center;
    background-color: var(--Grey-700);
    width: 100%;
    border-radius: 10px;
    padding: 20px 0;
    font-weight: 600;
}

a:hover {
    color: var(--Green);
}

footer {
    position: absolute;
    bottom: 40px;
}