: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%);
}

* {
    font-size: 0.875rem;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

html {
   height: 100vh;
}

body {
    background-color: var(--grey-900);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

main {
    background-color: var(--grey-800);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 25%;
    height: 50%;
    margin-top: 20%;
    margin-bottom: 20%;
}

header {
    text-align: center;
}

img {
    border-radius: 50%;
    width: 6.5rem;
    height: auto;
    margin-top: 2.75rem;
}

menu li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


li a {
    color: var(--white);
    background-color: var(--grey-700);
    border-radius: 5px;
    text-decoration: none;
    margin: 0.5rem;
    margin-right: 3rem;
    width: 19rem;
    height: 2rem;
    text-align: center;
}

a{
    text-align: center;
    padding-top: 15px;
}

a:hover {
    background-color: rgb(151, 130, 130);
}


h1 {
    color: var(--white);
    font-size: 1.75rem;
}

h4 {
    color: var(--green);
    padding-bottom: 2rem;
}

p {
    color: var(--white);
}
