@keyframes videoPlayButton
{
    0%      {opacity: 0; transform: scale(1); }
    50%     {opacity: 0.4; transform: scale(1.1);}
    100%    {opacity: 0; transform: scale(1.2);}
}

*
{
    box-sizing: border-box;
}

html
{
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.521vw;
}

body
{
    color: #fff;
    font-size: 1.6rem;
}

a
{
    	color: #fff;
    	/*text-decoration:none;*/
    	font-size: 1.3rem;
}

html,body
{
    background-color: #14151a;
    margin: 0;
    padding: 0;
}

input,
textarea,
option,
select,
button,
a
{
    font-family: 'Montserrat', Arial, sans-serif;
}

.cursor-pointer
{
    cursor: pointer;
}

.flex-row
{
    display: flex;
    flex-flow: row nowrap;
}

.flex-column
{
    display: flex;
    flex-flow: column nowrap;
}
