@font-face {
    font-family: "Inter";
    src: url('/assets/fonts/static/Inter-Bold.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url('/assets/fonts/static/Inter-Regular.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url('/assets/fonts/static/Inter-SemiBold.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url('/assets/fonts/Inter-VariableFont_slnt\,wght.ttf') format('truetype');
    font-style: normal;
}

.inter-bold {
    font-family: "Inter", serif;
    font-weight: 700;
}

.inter-semi-bold {
    font-family: "Inter", serif;
    font-weight: 600;
}

.inter-regular {
    font-family: "Inter", serif;
    font-weight: 400;
}


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

html {
    font-family: "Inter", serif;
    font-size: 14px;
}

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

: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%);
}

main {
    width: 100%;
    max-width: 384px;
    height: 613px;
    background-color: var(--grey-800);
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
    padding: 40px;
}

address {
    font-family: "Inter", serif;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;

}

address img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin-bottom: 28px;
}

address h1 {
    color: var(--white);
    font-style: normal;
    font-size: 24px;
    letter-spacing: 0.3px;
}

address h2 {
    color: var(--green);
    font-style: normal;
    font-size: 14px;
    margin-top: 10px;
    letter-spacing: .2px;
    margin-bottom: 17px;
}

address p {
    color: var(--white);
    font-style: normal;
    font-size: 14px;
    margin-top: 10px;
}

ul {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-top: 18px;
    width: 100%;
}

ul li {
    list-style: none;
    background-color: var(--grey-700);
    display: inline-block;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    padding: 13px 20px;
    margin: 9px;
}

ul li:hover {
    background-color: var(--green);
    transition: background-color 0.2s;
}

ul li a {
    text-decoration: none;
    color: white;
    font-family: 'Inter', serif;
    font-weight: 600;
    font-size: 14px;
}

ul li:hover a {
    color: var(--grey-900);
    transition: color 0.2s;
}