@charset "UTF-8";

:root {
    --cor0: #F7D500;
    --cor1: #ED7D3A;
    --cor2: #2FBF71;
    --cor3: #EF2D56;
    --cor4: #363537;
    --cor5: #FFFFFF;
    --cor6: #000000
}

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

html, body {
    width: 100vw;
    height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

main#followers {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: flex-start;
}

main#followers > h2 {
    margin-top: 20px;

    align-self: center;
}

main#followers > p {
    margin: auto;
    text-align: center;
    margin-top: 25px;
}

main#followers > p > a {
    text-align: center;
    margin: auto;
    text-decoration: none;
    font-weight: bold;
    color: var(--cor4);
    transition: 0.3s;
}

main#followers > p > a:hover {
    color: var(--cor0);
}

main#followers > div {
    width: 100%;
    padding: 10px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

main#followers > div > section#member {
    width: 100%;
    padding: 10px;

    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: center;
}

main#followers > div > section#member > div#foto-nome {
    width: 100%;

    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

main#followers > div > section#member a {
    text-decoration: none;
    color: var(--cor4);

    margin-right: 15px;
}

main#followers > div > section#member > div#foto-nome > a > img {
    width: 40px;
    border-radius: 50%;
}

main#followers > div > section#member > p {
    text-align: right;
    color: #5d5c60;
    width: 70vw;
}

a {
    cursor: pointer;
}

main#followers > div > section#member > div#seguir {
    width: 200px;
}

main#followers > div > section#member > div#seguir > a {
    text-decoration: none;
    color: var(--cor5);
    background-color: var(--cor3);
    border-radius: 5px;
    padding: 10px 20px;
}

main#followers > div > section#member > div#seguir > a#a_seguir {
    padding: 10px 14px;
    background-color: var(--cor1);
}