:root {
        --primary-color: #4953D8;
        --secundary-color: #FEFEFE;
        --primary-color-200: #B8BEFB;
        --primary-color-100: #DBDEFD;
    }

body{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--secundary-color);
    padding: 0;
    margin: 0;
}

nav{
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-end;
    position: fixed;
    z-index: 1;
    top: 0;

    font-size: 16px;
    font-weight: 600;

    & a {
    padding-top: 20px;
    padding-right: 50px;

    color: #222;
    text-decoration: none;
    }
}

.container{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    & .integrante{
        width: 15%;
        height: 60vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 30px;
        padding-top: 20px;

        background-color: rgb(235, 235, 235);
        border-radius: 2mm;
        font-size: 20px;
        font-family: 'Poppins', sans-serif;

        & i{
            font-size: 90px;
            color: var(--primary-color);
        }
    }
}