body,
html {
    overflow: auto;
    width: 100vw;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    font-family: 'Neue Helvetica', sans-serif;
    font-size: 10px;
    background: black;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}



.logo {
    fill: white;
    width: 60%;
}

/* ///////// BUTTOM ///////// */
button{
    border: 0px;
    font-size: 1.6rem;
}

.button-primary{
    padding: 1rem 2rem;
    cursor: pointer;
    color: white;
    background: black;
}
.button-primary:hover{
    background: white;
    transition: all ease .5s;
    color: black;
    border-radius: 4px;
}
button .icon{
    fill: white;
    width: 14px;
    height: 14px;
    margin-right: 4px;
}
button:hover .icon{
    fill: black;
}
.col-center{
    justify-content: center;
    display: flex;
}
.col-start{
    justify-items: start;
}
.col-end{
    display: flex;
    margin-left: auto;
}

/* ////////// GRID  ////////// */
.col-25{
    width: 25vw;
}
.col-50{
    width: 50%;
    display: flex;
}
.col-100{
    width: 100vw;
    display: flex;
    bottom: 14rem;
    position: absolute;
}
.m-4{
    margin: 0 14rem;
}


@media (max-width:429px) {
    body,
    html {
    overflow: auto;
    width: 100vw;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    font-family: 'Neue Helvetica', sans-serif;
    font-size: 10px;
    background: black;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
    .logo {
        fill: white;
        width: 100%;
    }

    /* ///////// BUTTOM ///////// */
    button{
        border: 0px;
        font-size: 1.6rem;
    }

    .button-primary{
        padding: 1rem 2rem;
        cursor: pointer;
        color: white;
        background: black;
    }

    .button-primary:hover{
        background: white;
        transition: all ease .5s;
        color: black;
        border-radius: 4px;
    }

    button .icon{
        fill: white;
        width: 14px;
        height: 14px;
        margin-right: 4px;
    }

    button:hover .icon{
        fill: black;
    }

    .col-center{
        justify-content: center;
        display: flex;
    }
    
    .col-start{
        justify-items: start;
    }
    .col-end{
        display: flex;
    }



    /* ////////// GRID  ////////// */
    .col-25{
        width: 50vw;
    }
    .col-50{
        width: 75%;
        display: flex;
        flex-direction: row;
        
    }
    .col-100{
        width: 100%;
        display: flex;
        bottom: 2rem;
        position: absolute;
        flex-wrap: wrap;
        justify-content: center;
    }
    .m-4{
        margin: 0;
    }
}