:root {
    --text-color: #666666;
    --title-color: #212529;
    --secondary-color: #aaaaaa;
  }
  

body
{
    font-family: "Helvetica", Sans-Serif;
    background-color: white;
    margin: 0px;
    padding: 0px;
    color: var(--text-color);
    font-size: 1.2rem;
    background-color: #f2f2ee;
}

a
{
    text-decoration: none; 
}

a:hover
{
    text-decoration: underline; 
}

.mainContent
{
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 10px;
    padding-top: 10px;
    box-shadow: 0px 3px 5px 0px #dddddd;
    max-width: 800px;
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    background-color: #fbfbfb;
}

.centeredContent
{
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.mt-0
{
    margin-top: 0px;
}

.mr-2
{
    margin-right: 10px;
}

.mr-3
{
    margin-right: 20px;
}

.mt-3
{
    margin-top: 20px;
}

.mt-5
{
    margin-top: 80px;
}

.mb-4
{
    margin-bottom: 40px;
}

.mb-5
{
    margin-bottom: 80px;
}

.nomargin
{
    margin: 0px !important;
}

.inline-block
{
    display: inline-block;
}

.leftHalf
{
    width: 50%;
    align-items: center;
    display: flex;
    justify-content: start;
}

.rightHalf
{
    width: 50%;
    align-items: center;
    display: flex;
    justify-content: end;
}

.youtube
{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.row
{
    display: block;
}