@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --text-primary:#c5f82a;
    --text-100:#ffffff;
    --text-200:#333333;
    --text-300:#1f1f1f;
    --text-400:#141414;
    --fw-400:400;
    --fw-600: 600;
    --fw-700: 700;
}

body{
    font-size: 14px;
    line-height: 1.14em;
    font-family: "inter", sans-serif;
    font-weight: var(--fw-400);
    background-color: var(--text-400);
    color: var(--text-100);
}

.section{
    padding: 120px;
    overflow: hidden;
}

.page-wrapper{
    width: 100px;
    min-height: 100vh;
}

.center-content{
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-default{
    margin: 0 auto;
    padding: 0 24px;
    max-width: 432px;
}

.card{
    border-radius: 16px;
    background-color: var(--text-300);
    padding: 36px 40px 40px;
}

.v-flex{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.figure{
    border-radius: 50%;
    overflow: hidden;
    max-width: 92px;
    max-height: 92px;
}

.image{
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.heading-h1{
    font-size: 24px;
    font-weight: var(--fw-600);
    margin-bottom: 8px;
}

.heading-h2{
    color: var(--text-primary);
    font-size: 14px;
    font-weight: var(--fw-700);
    margin-bottom: 27px;
}

.paragraph{
    font-weight: var(--fw-600);
    margin-bottom: 24px;
}

.menu-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-list{
    list-style: none;
}

.link{
    display: block;
    width: 100%;
    border-radius: 8px;
    text-align: center;
    background-color: var(--text-200);
    padding: 15px;
    text-decoration: none;
    color: var(--text-100);
    font-weight: var(--fw-700);
}

.link:hover{
    background-color: var(--text-primary);
    color: var(--text-300);
}

@keyframes fade {
    0% {
        opacity: 0;
        margin-top: 10px;
    }

    100% {
        opacity: 1;
        margin-top: 0;
    }
}
