:root
{
    --accent-color: #e28f35;
}

/* Desktop and Tablets */
@media (min-width:768px)
{
    main
    {
        box-shadow: -60px 65px 108px 13px rgba(0,0,0,0.88);
        -webkit-box-shadow: -60px 65px 108px 13px rgba(0,0,0,0.88);
        -moz-box-shadow: -60px 65px 108px 13px rgba(0,0,0,0.88); 
    }
    
    body
    {
        background: linear-gradient(135deg, #343235 42.5%, #51545d 42.5%);
    }
}

@font-face 
{
    font-family: 'Rubik';
    src:  url('/fonts/Rubik-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

ul
{
    list-style: none; /* Remove default bullets */
    margin-bottom: 0.5rem;
}

ul li::before
{
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: var(--accent-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

li
{
    margin-bottom: 0.1rem;
    line-height: 1.1rem;
}

body
{
    font-family: 'Rubik';
    font-size: x-small;

    background-color: #222224;

    background-repeat: no-repeat;
}

h1, h2, h3, h4, h5
{
    text-transform: uppercase;
    font-weight: bold;
}

h5, hr
{
    color: var(--accent-color);
}

hr
{
    margin: 0.7rem;
}

h6
{
    color: lightgray;
}

main
{
    border-radius: 1rem;
    background-color: white;
}

#leftRow
{
    background-color: #383b43;
    color: white;
}

.container
{
    max-width: 768px; /* Limited to Bootstrap max small breakpoint */
}

.btn-link
{
    text-decoration: none !important;
    color: white !important;
}

.btn-link:hover
{
    color: gray !important;
}

.btn-link::before
{
    display: inline-flex;
    content: '';

    background-image: url('../svg/download_FILL0_wght400_GRAD0_opsz48.svg');
    background-size: 1.5rem 1.5rem;
    height: 1.5rem;
    width: 1.5rem;
    transform: translate(0, 20%);
}

a:link, a:visited
{
    color: white !important;
    text-decoration: none !important;
}

a:hover
{
    color: gray !important;
}

.dualColumnList
{
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}