
    *,*::before, *::after {
        box-sizing: border-box;

        margin: 0;
        padding: 0;
    }
    
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
    

    :root{
        --off-black: hsl(0, 0%, 8%);
        --green: hsl(75, 94%, 57%);
        --white: hsl(0, 0%, 100%);
        --grey: hsl(0, 0%, 20%);
        --dark-grey:hsl(0, 0%, 12%);

    }
    body{
        font-size: 14px;
        background-color: var(--off-black);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 100vh;
        font-family: "Inter", sans-serif;
    }

    main{
        width: 90%;
        background-color: var(--dark-grey);
        border-radius: 0.75rem;
        display: flex;
        flex-direction: column;
        height: auto;  
        padding-block: 4rem;
        max-width: 25rem;
    }

    h1{
        color:hsl(0, 0%, 100%);
        font-weight: 600;
    }
    .title {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    h5{
        color:#be55f7;
        margin-bottom: 1rem;
        font-weight: 800;
    }
    p{
        color:var(--white);
    
    }

    .cubo{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        height:100%;
    }

    img{
        border-radius: 100%;
        width: 4.5rem;
    }

    .cont{
        display:flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    a{
        text-decoration: none;
        color: var(--white);
        font-weight: 700;   
    }

    ul{
        margin-top: 1.5rem;
        color: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        list-style: none;
        gap: 1rem;
        padding-inline: 1.5rem;
    }

    li{
        background-color: var(--grey);
        border-radius: 0.5rem;
        padding-block: 1rem;
        padding-inline: 4rem;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    li:hover{
        background-color:#be55f7;
    }

    li:hover a{
        color: var(--off-black);
    }